Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / compile / 20030418-1.c
blobf6d5a4af51c86451ec2632354bf7fa8bdd400d56
1 /* PR optimization/7675 */
2 /* Contributed by Volker Reichelt */
4 /* Verify that we don't put automatic variables
5 in registers too early. */
7 extern int dummy (int *);
9 void foo(int i)
11 int j=i;
13 void bar() { int x=j, y=i; }
15 dummy(&i);