/* 20030307-1.c from the execute part of the gcc torture tests. */ #include #ifdef __SDCC #pragma std_c99 #pragma disable_warning 85 #endif // TODO: Enable when all ports support long long! #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16) /* PR optimization/8726 */ /* Originator: Paul Eggert */ /* Verify that GCC doesn't miscompile tail calls on Sparc. */ int fcntl_lock(int fd, int op, long long offset, long long count, int type); int vfswrap_lock(char *fsp, int fd, int op, long long offset, long long count, int type) { return fcntl_lock(fd, op, offset, count, type); } int fcntl_lock(int fd, int op, long long offset, long long count, int type) { return type; } #endif void testTortureExecute (void) { #if !defined(__SDCC_pic14) && !defined(__SDCC_pic16) if (vfswrap_lock (0, 1, 2, 3, 4, 5) != 5) ASSERT (0); return; #endif }