PPC::B and PPC::BCC's target operand may be an immediate.
[llvm/msp430.git] / test / FrontendC / 2002-02-16-RenamingTest.c
blob952af90c87ef7f9432b94f44a22e455c6a676bc5
1 // RUN: %llvmgcc -S %s -o - | llvm-as -f -o /dev/null
3 /* test that locals are renamed with . notation */
5 void abc(void *);
7 void Test5(double X) {
8 abc(&X);
10 int X;
11 abc(&X);
13 float X;
14 abc(&X);