From: Daniel Dunbar Date: Sat, 5 Nov 2011 05:41:57 +0000 (+0000) Subject: tests: Remove some stray and unused -cc1 flags. These tests appear to be written X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83ea3bdde4d35a943369d61a261002211bf750c9;p=clang tests: Remove some stray and unused -cc1 flags. These tests appear to be written to go through the driver. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143791 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-member.cpp b/test/CodeGenCXX/debug-info-member.cpp index 5052a6cafb..8c2e3ebded 100644 --- a/test/CodeGenCXX/debug-info-member.cpp +++ b/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/test/CodeGenCXX/debug-info-method-spec.cpp b/test/CodeGenCXX/debug-info-method-spec.cpp index 31f66633dc..2068c5ce4f 100644 --- a/test/CodeGenCXX/debug-info-method-spec.cpp +++ b/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/test/CodeGenCXX/debug-info-method.cpp b/test/CodeGenCXX/debug-info-method.cpp index 5935727851..cb022bc52c 100644 --- a/test/CodeGenCXX/debug-info-method.cpp +++ b/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();