diff options
author | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:44:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-05-05 22:44:27 +0000 |
commit | 677f7eeb39fc180a2096561bf57fdf07ccd178b2 (patch) | |
tree | 6296b0737256e514ac2e8f9cd6bcf514ca29402d | |
parent | f110a2bdb6b5feb6422bc8d9ae936b00a223e58f (diff) |
this test is now in Target/README.txt
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36812 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Transforms/ArgumentPromotion/recursion.ll | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/test/Transforms/ArgumentPromotion/recursion.ll b/test/Transforms/ArgumentPromotion/recursion.ll deleted file mode 100644 index 306b969a5d..0000000000 --- a/test/Transforms/ArgumentPromotion/recursion.ll +++ /dev/null @@ -1,17 +0,0 @@ -; RUN: llvm-upgrade < %s | llvm-as | opt -argpromotion | llvm-dis | grep x.val -; XFAIL: * - -implementation ; Functions: - -internal int %foo(int* %x) { -entry: - %tmp = load int* %x - %tmp.foo = call int %foo(int *%x) - ret int %tmp.foo -} - -int %bar(int* %x) { -entry: - %tmp3 = call int %foo( int* %x) ; <int>[#uses=1] - ret int %tmp3 -} |