From: Chris Lattner Date: Tue, 16 May 2006 17:22:42 +0000 (+0000) Subject: Remove this xfail-d test, which doesn't make any sense X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=258926aa220b5d0a1f5d0ca381256bdf66ab5b32;p=oota-llvm.git Remove this xfail-d test, which doesn't make any sense git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28328 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/lea.ll b/test/CodeGen/X86/lea.ll deleted file mode 100644 index 8c231b11026..00000000000 --- a/test/CodeGen/X86/lea.ll +++ /dev/null @@ -1,12 +0,0 @@ -; RUN: llvm-as < %s | llc -march=x86 | grep lea - -; XFAIL: * - -%G = weak global int 0 -int %test1(int* %P, int %X) { - %tmp.1 = getelementptr int* %P, int %X - %tmp.2 = load int* %tmp.1 - store int %tmp.2, int* %G - %tmp.3 = sub int %tmp.2, 9 - ret int %tmp.3 -}