From 18d291c84fdfc6c0e9b95f56d2419011ee6ddf36 Mon Sep 17 00:00:00 2001 From: Nico Rieck Date: Sun, 16 Feb 2014 07:28:32 +0000 Subject: [PATCH] Fix broken RUN lines git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@201475 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGenObjC/objc2-weak-block-call.m | 2 +- test/Driver/unknown-gcc-arch.c | 2 +- test/Preprocessor/x86_target_features.c | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/CodeGenObjC/objc2-weak-block-call.m b/test/CodeGenObjC/objc2-weak-block-call.m index 7c6881751d..e13cc7d539 100644 --- a/test/CodeGenObjC/objc2-weak-block-call.m +++ b/test/CodeGenObjC/objc2-weak-block-call.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fblocks -fobjc-gc -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-LP64 %s -// RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-LP64 %s +// RUN: %clang_cc1 -fblocks -fobjc-gc -triple i386-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -emit-llvm %s -o - | FileCheck -check-prefix CHECK-LP32 %s @interface MyView - (void)MyView_sharedInit; diff --git a/test/Driver/unknown-gcc-arch.c b/test/Driver/unknown-gcc-arch.c index dd2c96ac8b..6317e13ec4 100644 --- a/test/Driver/unknown-gcc-arch.c +++ b/test/Driver/unknown-gcc-arch.c @@ -3,7 +3,7 @@ // X86_64: {{.*as.*--64}} // RUN: %clang -target x86_64-unknown-unknown -c -x assembler %s -### -m32 \ -// RUN -no-integrated-as 2>&1 | FileCheck -check-prefix=X86_64-M32 %s +// RUN: -no-integrated-as 2>&1 | FileCheck -check-prefix=X86_64-M32 %s // X86_64-M32: {{.*as.*--32}} // RUN: %clang -target i386-unknown-unknown -c -x assembler %s -### \ diff --git a/test/Preprocessor/x86_target_features.c b/test/Preprocessor/x86_target_features.c index 751c8ae958..7bc5cd8b2c 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 -- 2.40.0