diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-11 07:16:15 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-12-11 07:16:15 +0000 |
commit | cfe7c28e18d8ae8ed22c9504967e5b163f8eaf23 (patch) | |
tree | 6ac30405db66cc0709d6990f5c52ffd4892213f1 | |
parent | 5e4ccb4d19e0f62c5f9ddb506297e86e3f2fc21c (diff) |
clang/test/Driver/debug-options-as.c: Fixup not to use prefix=S. I didn't know "REQUIRES:" would match --check-prefix=S ...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169826 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Driver/debug-options-as.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Driver/debug-options-as.c b/test/Driver/debug-options-as.c index 20e104e80b..f512f1523b 100644 --- a/test/Driver/debug-options-as.c +++ b/test/Driver/debug-options-as.c @@ -14,7 +14,7 @@ // rdar://9275556 // RUN: touch %t.s // RUN: %clang -### -c -integrated-as -g %t.s 2>&1 \ -// RUN: | FileCheck -check-prefix=S %s +// RUN: | FileCheck %s // -// S: "-cc1as" -// S: "-g" +// CHECK: "-cc1as" +// CHECK: "-g" |