mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 22:26:14 +00:00
358f3275cc
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36084 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
123 B
Plaintext
7 lines
123 B
Plaintext
// RUN: %llvmgcc -xc++ -S -o - %s | not grep { constant }
|
|
|
|
extern int X;
|
|
const int Y = X;
|
|
const int* foo() { return &Y; }
|
|
|