[cfe-commits] r143791 - in /cfe/trunk/test/CodeGenCXX: debug-info-member.cpp debug-info-method-spec.cpp debug-info-method.cpp
Daniel Dunbar
daniel at zuster.org
Fri Nov 4 22:41:57 PDT 2011
Author: ddunbar
Date: Sat Nov 5 00:41:57 2011
New Revision: 143791
URL: http://llvm.org/viewvc/llvm-project?rev=143791&view=rev
Log:
tests: Remove some stray and unused -cc1 flags. These tests appear to be written
to go through the driver.
Modified:
cfe/trunk/test/CodeGenCXX/debug-info-member.cpp
cfe/trunk/test/CodeGenCXX/debug-info-method-spec.cpp
cfe/trunk/test/CodeGenCXX/debug-info-method.cpp
Modified: cfe/trunk/test/CodeGenCXX/debug-info-member.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-member.cpp?rev=143791&r1=143790&r2=143791&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-member.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-member.cpp Sat Nov 5 00:41:57 2011
@@ -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;
Modified: cfe/trunk/test/CodeGenCXX/debug-info-method-spec.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-method-spec.cpp?rev=143791&r1=143790&r2=143791&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-method-spec.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-method-spec.cpp Sat Nov 5 00:41:57 2011
@@ -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:
Modified: cfe/trunk/test/CodeGenCXX/debug-info-method.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-method.cpp?rev=143791&r1=143790&r2=143791&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-method.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-method.cpp Sat Nov 5 00:41:57 2011
@@ -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();
More information about the cfe-commits
mailing list