diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/lbug.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/lbug.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/lbug.c b/gcc/testsuite/gcc.c-torture/compile/lbug.c new file mode 100644 index 0000000..0440a0a --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/lbug.c @@ -0,0 +1,7 @@ +long long x = 0; +main() +{ + if (x--) + return 255; + return 0; +} |