From: Jakub Jelinek Date: Fri, 20 Apr 2001 08:04:29 +0000 (+0200) Subject: Duh, broken perms. X-Git-Tag: prereleases/libstdc++-3.0.95~4850 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c0230f37445c0e90dc5569c1bec23184c9b9cbed;p=thirdparty%2Fgcc.git Duh, broken perms. From-SVN: r41445 --- diff --git a/gcc/testsuite/gcc.c-torture/execute/20010403-1.c b/gcc/testsuite/gcc.c-torture/execute/20010403-1.c new file mode 100644 index 000000000000..6a8f2a4242ce --- /dev/null +++ b/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); +}