blob: a65cef8409cd0c2963f1a5d22222b07e8824c061 [file] [log] [blame]
Chandler Carruth65ea45a2012-04-08 16:40:30 +00001// RUN: %clang -target i386-unknown-unknown -static -dM -E -o - %s \
2// RUN: | FileCheck --check-prefix=CHECK-STATIC %s
3// CHECK-STATIC-NOT: #define __PIC__
4// CHECK-STATIC-NOT: #define __pic__
5// RUN: %clang -target i386-unknown-unknown -fpic -dM -E -o - %s \
6// RUN: | FileCheck --check-prefix=CHECK-LOWERPIC %s
7// CHECK-LOWERPIC: #define __PIC__ 1
8// CHECK-LOWERPIC: #define __pic__ 1
9// RUN: %clang -target i386-unknown-unknown -fPIC -dM -E -o - %s \
10// RUN: | FileCheck --check-prefix=CHECK-UPPERPIC %s
11// CHECK-UPPERPIC: #define __PIC__ 2
12// CHECK-UPPERPIC: #define __pic__ 2