summaryrefslogtreecommitdiff
path: root/test/FrontendC++/2004-01-11-DynamicInitializedConstant.cpp
blob: 8ae15c9592b1f36fc5a4e9924c843d63657aea02 (plain)
1
2
3
4
5
6
// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }

extern int X;
const int Y = X;
const int* foo() { return &Y; }