Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
toolchain
/
llvm-project
/
adf511c0562f771503032f8653278d72610c11f4
/
.
/
clang
/
test
/
CodeGen
/
no-common.c
blob: 190873c745fe00cec3b736653051e6501a424e21 [
file
] [
log
] [
blame
]
Daniel Dunbar
adf511c
2009-03-26 16:37:00 +0000
[
diff
] [
blame^
]
1
// RUN: clang -emit-llvm -S -o %t %s &&
2
// RUN: grep '@x = common global' %t &&
3
// RUN: clang -fno-common -emit-llvm -S -o %t %s &&
4
// RUN: grep '@x = global' %t
5
6
int
x
;