diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-25 14:43:34 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-10-25 14:43:34 +0000 |
commit | 37c94bfdc82f0e3526e7f7fc33ee9c817159ed4d (patch) | |
tree | 12a66ccff8bc16c0014187127419b05a1a7abaac | |
parent | a0d5878b7e1c54551c0445354788e4259900c03c (diff) |
clang/test/CodeGenCXX/debug-info-thunk.cpp: Suppress it for now with XFAIL:*, due to failing on i686-*-*.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166683 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGenCXX/debug-info-thunk.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/CodeGenCXX/debug-info-thunk.cpp b/test/CodeGenCXX/debug-info-thunk.cpp index 58dd02885e..711a2c6ce1 100644 --- a/test/CodeGenCXX/debug-info-thunk.cpp +++ b/test/CodeGenCXX/debug-info-thunk.cpp @@ -1,5 +1,9 @@ // 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(); }; |