diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/compile/gronk.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/compile/gronk.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/compile/gronk.c b/gcc/testsuite/gcc.c-torture/compile/gronk.c new file mode 100644 index 00000000000..c1bb767e576 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/compile/gronk.c @@ -0,0 +1,8 @@ +test_opt (a, b) + unsigned a, b; +{ + a = a / b; + if (a == 0) + a++; + return a; +} |