aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c')
-rw-r--r--SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c b/SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c
new file mode 100644
index 00000000..4cc4c8c1
--- /dev/null
+++ b/SingleSource/Regression/C/gcc-c-torture/execute/991216-4.c
@@ -0,0 +1,16 @@
+/* Test against a problem with loop reversal. */
+static void bug(int size, int tries)
+{
+ int i;
+ int num = 0;
+ while (num < size)
+ {
+ for (i = 1; i < tries; i++) num++;
+ }
+}
+
+int main()
+{
+ bug(5, 10);
+ exit (0);
+}