summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-12-16 20:27:43 +0000
committerChris Lattner <sabre@nondot.org>2006-12-16 20:27:43 +0000
commit7f03b2d10750929972a709c9e7455b024c956c91 (patch)
tree6d8236a7c6f7fd327316a428654cb5680727aa89 /test
parent3381f0a09da038e857b2df7b7a4aba1df34a2a4e (diff)
downloadllvm-7f03b2d10750929972a709c9e7455b024c956c91.tar.gz
llvm-7f03b2d10750929972a709c9e7455b024c956c91.tar.bz2
llvm-7f03b2d10750929972a709c9e7455b024c956c91.tar.xz
Fix one more broken testcase
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32631 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/CBackend/2003-06-28-InvokeSupport.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/CBackend/2003-06-28-InvokeSupport.ll b/test/CodeGen/CBackend/2003-06-28-InvokeSupport.ll
index 2d87233a8c..f69c7dccbd 100644
--- a/test/CodeGen/CBackend/2003-06-28-InvokeSupport.ll
+++ b/test/CodeGen/CBackend/2003-06-28-InvokeSupport.ll
@@ -8,7 +8,7 @@ int %test(int %X) {
%A = invoke int %callee(int %X, int 5) to label %Ok except label %Threw
Ok:
%B = phi int [%A, %0], [-1, %Threw]
- ret int %A
+ ret int %B
Threw:
br label %Ok
}