mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
55928bc576
llvm-svn: 120741
8 lines
226 B
C
8 lines
226 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as -o /dev/null
|
|
// Don't crash on a common-linkage constant global.
|
|
extern const int kABSourceTypeProperty;
|
|
int foo(void) {
|
|
return kABSourceTypeProperty;
|
|
}
|
|
const int kABSourceTypeProperty;
|