From: NAKAMURA Takumi Date: Thu, 25 Oct 2012 14:43:34 +0000 (+0000) Subject: clang/test/CodeGenCXX/debug-info-thunk.cpp: Suppress it for now with XFAIL:*, due... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37c94bfdc82f0e3526e7f7fc33ee9c817159ed4d;p=clang 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 --- 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(); };