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
PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git]
/
test
/
FrontendC
/
2002-02-16-RenamingTest.c
blob
952af90c87ef7f9432b94f44a22e455c6a676bc5
1
// RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
2
3
/* test that locals are renamed with . notation */
4
5
void
abc
(
void
*);
6
7
void
Test5
(
double
X
) {
8
abc
(&
X
);
9
{
10
int
X
;
11
abc
(&
X
);
12
{
13
float
X
;
14
abc
(&
X
);
15
}
16
}
17
}
18