aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c')
-rw-r--r--gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c b/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c
new file mode 100644
index 000000000..6a8f2a424
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gcc.c-torture/execute/20010403-1.c
@@ -0,0 +1,36 @@
+void b (int *);
+void c (int, int);
+void d (int);
+
+int e;
+
+void a (int x, int y)
+{
+ int f = x ? e : 0;
+ int z = y;
+
+ b (&y);
+ c (z, y);
+ d (f);
+}
+
+void b (int *y)
+{
+ (*y)++;
+}
+
+void c (int x, int y)
+{
+ if (x == y)
+ abort ();
+}
+
+void d (int x)
+{
+}
+
+int main (void)
+{
+ a (0, 0);
+ exit (0);
+}