repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[LLVM][IR] Use splat syntax when printing ConstantExpr based splats. (#116856)
[llvm-project.git]
/
clang
/
test
/
CodeGen
/
2002-02-18-StaticData.c
blob
d0cf52477252158ab6e3fefcb8057a39053c47cc
1
// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3
4
double
FOO
=
17
;
5
double
BAR
=
12.0
;
6
float
XX
=
12.0
f
;
7
8
static char
*
procnames
[] = {
9
"EXIT"
10
};
11
12
void
*
Data
[] = { &
FOO
, &
BAR
, &
XX
};
13