[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / 2002-02-16-RenamingTest.c
blobbb23e680f25af0272b032218a01bb7b1b1d1fd9e
1 // RUN: %clang_cc1 -emit-llvm %s -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);