Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
df0325110bb07ab62b808c8db8be2f6eee9b3476
/
.
/
test
/
CodeGen
/
global-init.c
blob: 133a3b5373f55e8380cbc7896aed7c18f24ff8a0 [
file
] [
log
] [
blame
]
// RUN: clang -emit-llvm -o - %s | not grep "common"
// This checks that the global won't be marked as common.
// (It shouldn't because it's being initialized).
int
a
;
int
a
=
242
;