aboutsummaryrefslogtreecommitdiff
path: root/SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c
diff options
context:
space:
mode:
Diffstat (limited to 'SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c')
-rw-r--r--SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c b/SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c
new file mode 100644
index 00000000..e8d8cb5f
--- /dev/null
+++ b/SingleSource/Regression/C/gcc-c-torture/execute/loop-8.c
@@ -0,0 +1,23 @@
+double a[3] = { 0.0, 1.0, 2.0 };
+
+void bar (int x, double *y)
+{
+ if (x || *y != 1.0)
+ abort ();
+}
+
+int main ()
+{
+ double c;
+ int d;
+ for (d = 0; d < 3; d++)
+ {
+ c = a[d];
+ if (c > 0.0) goto e;
+ }
+ bar(1, &c);
+ exit (1);
+e:
+ bar(0, &c);
+ exit (0);
+}