From: Jakub Jelinek Date: Fri, 20 Apr 2001 08:04:29 +0000 (+0200) Subject: Duh, broken perms. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c0230f37445c0e90dc5569c1bec23184c9b9cbed;p=gcc.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 00000000000..6a8f2a4242c --- /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); +}