make tblgen produce a function that returns the name for a physreg.
[llvm/avr.git] / test / FrontendC / 2002-02-16-RenamingTest.c
blob6042b67dc0cff5c736be42722b096b2b2684de6b
1 // RUN: %llvmgcc -S %s -o - | llvm-as -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);