diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/pr37078.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/pr37078.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr37078.c b/gcc/testsuite/gcc.c-torture/compile/pr37078.c new file mode 100644 index 000000000..1cc1659f1 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/pr37078.c @@ -0,0 +1,6 @@ +int foo (int b) +{ + if (b == (int)0x80000000) + return __builtin_abs (b); + return 0; +} |