summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-16 17:22:42 +0000
committerChris Lattner <sabre@nondot.org>2006-05-16 17:22:42 +0000
commit258926aa220b5d0a1f5d0ca381256bdf66ab5b32 (patch)
tree24bdebedd93568ed9d828bf04f334889e944f2a3 /test
parentaa9406b0c44379de438f3626d5b391df7130e73c (diff)
downloadllvm-258926aa220b5d0a1f5d0ca381256bdf66ab5b32.tar.gz
llvm-258926aa220b5d0a1f5d0ca381256bdf66ab5b32.tar.bz2
llvm-258926aa220b5d0a1f5d0ca381256bdf66ab5b32.tar.xz
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
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/lea.ll12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/CodeGen/X86/lea.ll b/test/CodeGen/X86/lea.ll
deleted file mode 100644
index 8c231b1102..0000000000
--- 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
-}