[cfe-commits] r166758 - /cfe/trunk/test/CodeGenCXX/debug-info-thunk.cpp

Alexey Samsonov samsonov at google.com
Fri Oct 26 00:01:51 PDT 2012


Author: samsonov
Date: Fri Oct 26 02:01:51 2012
New Revision: 166758

URL: http://llvm.org/viewvc/llvm-project?rev=166758&view=rev
Log:
Fix test suppressed in r166683 on 32-bit Linux

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

Modified: cfe/trunk/test/CodeGenCXX/debug-info-thunk.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-thunk.cpp?rev=166758&r1=166757&r2=166758&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-thunk.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-thunk.cpp Fri Oct 26 02:01:51 2012
@@ -1,9 +1,5 @@
 // RUN: %clang_cc1 %s -g -S -emit-llvm -o - | FileCheck %s
 
-// FIXME: Failing on i686.
-// XFAIL: *
-// RUN: %clang_cc1 -triple i686-linux %s -g -S -emit-llvm -o - | FileCheck %s
-
 struct A {
   virtual void f();
 };
@@ -18,4 +14,4 @@
 
 void C::f() { }
 
-// CHECK: [ DW_TAG_subprogram ] [line 15] [def] [_ZThn8_N1C1fEv]
+// CHECK: [ DW_TAG_subprogram ] [line 15] [def] [_ZThn{{4|8}}_N1C1fEv]





More information about the cfe-commits mailing list