Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
llvm
/
20cd43b2f6a03abf46282653b774046c80c02cf5
/
.
/
test
/
C++Frontend
/
2004-01-11-DynamicInitializedConstant.cpp.tr
blob: 03fead23f2f7a0e6ae52f83cf0494d645b35e49c [
file
] [
log
] [
blame
]
Chris Lattner
20cd43b
2004-01-12 05:01:48 +0000
[
diff
] [
blame^
]
1
// RUN: %llvmgcc -xc++ -S -o - %s | not grep ' constant '
2
3
extern
int
X
;
4
const
int
Y
=
X
;
5
const
int
*
foo
()
{
return
&
Y
;
}
6