blob: 03fead23f2f7a0e6ae52f83cf0494d645b35e49c [file] [log] [blame]
Chris Lattner20cd43b2004-01-12 05:01:48 +00001// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' constant '
2
3extern int X;
4const int Y = X;
5const int* foo() { return &Y; }
6