view gcc/testsuite/gcc.c-torture/compile/20120913-1.c @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 04ced10e8804
children
line wrap: on
line source

struct list_head {
  struct list_head *next, *prev;
};
struct dm_exception {
  struct list_head hash_list;
  unsigned long long old_chunk;
  unsigned long long new_chunk;
};
struct dm_exception *dm_lookup_exception(struct list_head *table, unsigned long long chunk) {
  struct list_head *slot;
  struct dm_exception *e;
  slot = &table[0];
  e = (struct dm_exception *)slot->next;
  for (; &e->hash_list != (slot);)
    if (chunk <= (e->new_chunk>>56))
      return e;
}