repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Improve compatibility with older versions of Windows.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-02-18-StaticData.c
blob
10439c373097ce43cc84e5396dd991d21160c406
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -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