diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/xlop.c')
-rw-r--r-- | gcc/testsuite/gcc.c-torture/unsorted/xlop.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/unsorted/xlop.c b/gcc/testsuite/gcc.c-torture/unsorted/xlop.c new file mode 100644 index 000000000..6506bfd34 --- /dev/null +++ b/gcc/testsuite/gcc.c-torture/unsorted/xlop.c @@ -0,0 +1,11 @@ +foo (a) +{ + int b; + do + { + b = bar (); + a = b - 10; + } + while (a > 10); + return a; +} |