diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-05 05:41:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-05 05:41:57 +0000 |
commit | b3675dd66036b0269a43323e23bd72d38267dbf8 (patch) | |
tree | 764554e708af6f143d0d5489039b6d3924b12a80 | |
parent | 04994959a37501d74a49888a77986b92917ef869 (diff) | |
download | bcm5719-llvm-b3675dd66036b0269a43323e23bd72d38267dbf8.tar.gz bcm5719-llvm-b3675dd66036b0269a43323e23bd72d38267dbf8.zip |
tests: Remove some stray and unused -cc1 flags. These tests appear to be written
to go through the driver.
llvm-svn: 143791
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-member.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-method-spec.cpp | 2 | ||||
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-method.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-member.cpp b/clang/test/CodeGenCXX/debug-info-member.cpp index 5052a6cafb7..8c2e3ebded4 100644 --- a/clang/test/CodeGenCXX/debug-info-member.cpp +++ b/clang/test/CodeGenCXX/debug-info-member.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_ACCESS_public +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_public class A { public: int x; diff --git a/clang/test/CodeGenCXX/debug-info-method-spec.cpp b/clang/test/CodeGenCXX/debug-info-method-spec.cpp index 31f66633dc4..2068c5ce4fa 100644 --- a/clang/test/CodeGenCXX/debug-info-method-spec.cpp +++ b/clang/test/CodeGenCXX/debug-info-method-spec.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_AT_specification +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_AT_specification // Radar 9254491 class A { public: diff --git a/clang/test/CodeGenCXX/debug-info-method.cpp b/clang/test/CodeGenCXX/debug-info-method.cpp index 59357278515..cb022bc52cd 100644 --- a/clang/test/CodeGenCXX/debug-info-method.cpp +++ b/clang/test/CodeGenCXX/debug-info-method.cpp @@ -1,4 +1,4 @@ -// RUN: %clang -fverbose-asm -cc1 -g -S %s -o - | grep DW_ACCESS_protected +// RUN: %clang -fverbose-asm -g -S %s -o - | grep DW_ACCESS_protected class A { protected: int foo(); |