diff options
author | Fangrui Song <maskray@google.com> | 2019-09-27 05:37:06 +0000 |
---|---|---|
committer | Fangrui Song <maskray@google.com> | 2019-09-27 05:37:06 +0000 |
commit | e6d423fe03e63212d03dc180cb9e07d65bb5a614 (patch) | |
tree | 0b4594c8db2cd675269bdc5b692377c5f276cdb1 /clang/test/Frontend | |
parent | 49494733533dd3f0be7d0ae216b267e71ee946b4 (diff) | |
download | bcm5719-llvm-e6d423fe03e63212d03dc180cb9e07d65bb5a614.tar.gz bcm5719-llvm-e6d423fe03e63212d03dc180cb9e07d65bb5a614.zip |
[test] Use %clang_cc1 instead of %clang -cc1
llvm-svn: 373043
Diffstat (limited to 'clang/test/Frontend')
-rw-r--r-- | clang/test/Frontend/cc1-return-codes.c | 4 | ||||
-rw-r--r-- | clang/test/Frontend/nostdlib-for-asmpp.s | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/Frontend/cc1-return-codes.c b/clang/test/Frontend/cc1-return-codes.c index da329b93426..fde1b4adf2a 100644 --- a/clang/test/Frontend/cc1-return-codes.c +++ b/clang/test/Frontend/cc1-return-codes.c @@ -1,4 +1,4 @@ // cc1 immediate arguments (arguments which displays information and exits) // shall exit indicating success (return code 0) -// RUN: %clang -cc1 -help -// RUN: %clang -cc1 -version +// RUN: %clang_cc1 -help +// RUN: %clang_cc1 -version diff --git a/clang/test/Frontend/nostdlib-for-asmpp.s b/clang/test/Frontend/nostdlib-for-asmpp.s index 330fee32a36..c1be5a27779 100644 --- a/clang/test/Frontend/nostdlib-for-asmpp.s +++ b/clang/test/Frontend/nostdlib-for-asmpp.s @@ -1,4 +1,4 @@ -// RUN: %clang -cc1 -x assembler-with-cpp -triple arm64-apple-ios6.0.0 -isysroot %S/doesnotexist -std=c++11 -v %s 2>&1 | FileCheck %s +// RUN: %clang_cc1 -x assembler-with-cpp -triple arm64-apple-ios6.0.0 -isysroot %S/doesnotexist -std=c++11 -v %s 2>&1 | FileCheck %s // The C++ stdlib path should not be included for an assembly source. // CHECK-NOT: usr/include/c++/ |