/* 941014-1.c from the execute part of the gcc torture suite. */ #include #ifdef __SDCC #pragma std_c99 #pragma disable_warning 85 #endif int f (int a, int b) { } void testTortureExecute (void) { unsigned long addr1; unsigned long addr2; addr1 = (unsigned long) &f; addr1 += 5; addr2 = 5 + (unsigned long) &f; if (addr1 != addr2) ASSERT (0); return; }