diff options
author | Alexey Samsonov <samsonov@google.com> | 2012-10-26 07:01:51 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2012-10-26 07:01:51 +0000 |
commit | c01526e39e6df252d4de7fa831d0d5b384a3af06 (patch) | |
tree | 03d96186f43e8a20abc5d9eec7111994a6aad72e | |
parent | 3dac20a58de62443db0f657870bd62b9c05835e8 (diff) |
Fix test suppressed in r166683 on 32-bit Linux
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166758 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/debug-info-thunk.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/CodeGenCXX/debug-info-thunk.cpp b/test/CodeGenCXX/debug-info-thunk.cpp index 711a2c6ce1..394ebd8291 100644 --- a/test/CodeGenCXX/debug-info-thunk.cpp +++ b/test/CodeGenCXX/debug-info-thunk.cpp @@ -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 @@ struct C : A, B { void C::f() { } -// CHECK: [ DW_TAG_subprogram ] [line 15] [def] [_ZThn8_N1C1fEv] +// CHECK: [ DW_TAG_subprogram ] [line 15] [def] [_ZThn{{4|8}}_N1C1fEv] |