blob: 8ae15c9592b1f36fc5a4e9924c843d63657aea02 [file] [log] [blame]
Reid Spencer358f3272007-04-15 20:41:31 +00001// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
Chris Lattner20cd43b2004-01-12 05:01:48 +00002
3extern int X;
4const int Y = X;
5const int* foo() { return &Y; }
6