[llvm-commits] [llvm] r55296 - /llvm/trunk/test/CodeGen/X86/fold-call-2.ll

Bill Wendling isanbard at gmail.com
Sun Aug 24 14:48:47 PDT 2008


Author: void
Date: Sun Aug 24 16:48:46 2008
New Revision: 55296

URL: http://llvm.org/viewvc/llvm-project?rev=55296&view=rev
Log:
Fix this test. Don't null out the file, just XFAIL it until patch can be fixed.

Modified:
    llvm/trunk/test/CodeGen/X86/fold-call-2.ll

Modified: llvm/trunk/test/CodeGen/X86/fold-call-2.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/fold-call-2.ll?rev=55296&r1=55295&r2=55296&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/fold-call-2.ll (original)
+++ llvm/trunk/test/CodeGen/X86/fold-call-2.ll Sun Aug 24 16:48:46 2008
@@ -0,0 +1,11 @@
+; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin | grep mov | count 1
+; XFAIL: *
+
+ at f = external global void ()*		; <void ()**> [#uses=1]
+
+define i32 @main() nounwind {
+entry:
+	load void ()** @f, align 8		; <void ()*>:0 [#uses=1]
+	tail call void %0( ) nounwind
+	ret i32 0
+}





More information about the llvm-commits mailing list