diff options
Diffstat (limited to 'test/Preprocessor/x86_target_features.c')
-rw-r--r-- | test/Preprocessor/x86_target_features.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/Preprocessor/x86_target_features.c b/test/Preprocessor/x86_target_features.c index 751c8ae..7bc5cd8 100644 --- a/test/Preprocessor/x86_target_features.c +++ b/test/Preprocessor/x86_target_features.c @@ -193,16 +193,16 @@ // SHA: #define __SSE2__ 1 // SHA-NOT: #define __SSE3__ 1 -// run: %clang -target i386-unknown-unknown -march=pentiumpro -msha -mno-sha -x c -e -dm -o - %s | filecheck --check-prefix=SHANOSHA %s +// RUN: %clang -target i386-unknown-unknown -march=pentiumpro -msha -mno-sha -x c -E -dM -o - %s | FileCheck --check-prefix=SHANOSHA %s // SHANOSHA-NOT: #define __SHA__ 1 // SHANOSHA-NOT: #define __SSE2__ 1 -// run: %clang -target i386-unknown-unknown -march=pentiumpro -msha -mno-sse2 -x c -e -dm -o - %s | filecheck --check-prefix=SHANOSSE2 %s +// RUN: %clang -target i386-unknown-unknown -march=pentiumpro -msha -mno-sse2 -x c -E -dM -o - %s | FileCheck --check-prefix=SHANOSSE2 %s -// SHANOSSSE2-NOT: #define __SHA__ 1 -// SHANOSSSE2-NOT: #define __SSE2__ 1 -// SHANOSSSE2-NOT: #define __SSE3__ 1 +// SHANOSSE2-NOT: #define __SHA__ 1 +// SHANOSSE2-NOT: #define __SSE2__ 1 +// SHANOSSE2-NOT: #define __SSE3__ 1 // RUN: %clang -target i386-unknown-unknown -march=atom -mtbm -x c -E -dM -o - %s | FileCheck --check-prefix=TBM %s |