diff options
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/unsorted/xlop.c')
-rwxr-xr-x | 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 100755 index 0000000..6506bfd --- /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; +} |