r189633 - Pass the special backend option to this test for now to get it passing

Eric Christopher echristo at gmail.com
Thu Aug 29 17:52:06 PDT 2013


Author: echristo
Date: Thu Aug 29 19:52:06 2013
New Revision: 189633

URL: http://llvm.org/viewvc/llvm-project?rev=189633&view=rev
Log:
Pass the special backend option to this test for now to get it passing
again.

This test should a) test IR or be moved, and b) get an actual option
for the dwarf pub sections.

Modified:
    cfe/trunk/test/CodeGenCXX/debug-info-pubtypes.cpp

Modified: cfe/trunk/test/CodeGenCXX/debug-info-pubtypes.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-pubtypes.cpp?rev=189633&r1=189632&r2=189633&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-pubtypes.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-pubtypes.cpp Thu Aug 29 19:52:06 2013
@@ -1,6 +1,5 @@
 // REQUIRES: x86-64-registered-target
-// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -g -fno-limit-debug-info -S %s -o %t
-// RUN: FileCheck %s < %t
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10  -g -fno-limit-debug-info -S -mllvm -generate-dwarf-pub-sections=Enable %s -o - | FileCheck %s
 
 // FIXME: This testcase shouldn't rely on assembly emission.
 //CHECK: Lpubtypes_begin[[SECNUM:[0-9]:]]
@@ -10,7 +9,7 @@
 
 class G {
 public:
-	void foo();
+  void foo();
 };
 
 void G::foo() {





More information about the cfe-commits mailing list