[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Driver / verify_pch.m
blobc6eca4268bd7945b7824c1aec8da7e59c1bbfd6e
1 // RUN: touch %t.pch
2 // RUN: %clang -### -verify-pch %t.pch 2> %t.log.1
3 // RUN: FileCheck %s < %t.log.1
4 // CHECK: -verify-pch
6 // Also ensure that the language setting is not affected by the .pch extension
7 // CHECK-NOT: "-x" "precompiled-header"
9 // RUN: %clang -### -verify-pch -x objective-c %t.pch 2> %t.log.2
10 // RUN: FileCheck -check-prefix=CHECK2 %s < %t.log.2
11 // CHECK2: "-x" "objective-c"
12 // CHECK2-NOT: "-x" "precompiled-header"