repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Teach mergefunc that intptr_t is the same width as a pointer. We still can't
[llvm.git]
/
test
/
FrontendC
/
2002-02-18-StaticData.c
blob
76cb0e670a7acea6b24a4b235dd7430ae0fe633f
1
// RUN: %llvmgcc -S %s -o - | llvm-as -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