blob: 8ae15c9592b1f36fc5a4e9924c843d63657aea02 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
2
3extern int X;
4const int Y = X;
5const int* foo() { return &Y; }
6