From: Bill Wendling Date: Sun, 24 Aug 2008 21:48:46 +0000 (+0000) Subject: Fix this test. Don't null out the file, just XFAIL it until patch can be fixed. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3574c2d8492646fbf2857ed60f52275ff169e750;p=oota-llvm.git Fix this test. Don't null out the file, just XFAIL it until patch can be fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55296 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/fold-call-2.ll b/test/CodeGen/X86/fold-call-2.ll index e69de29bb2d..fe060a7ea5a 100644 --- a/test/CodeGen/X86/fold-call-2.ll +++ b/test/CodeGen/X86/fold-call-2.ll @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin | grep mov | count 1 +; XFAIL: * + +@f = external global void ()* ; [#uses=1] + +define i32 @main() nounwind { +entry: + load void ()** @f, align 8 ; :0 [#uses=1] + tail call void %0( ) nounwind + ret i32 0 +}