summaryrefslogtreecommitdiff
path: root/test/Transforms/SCCP
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-11-03 23:40:48 +0000
committerChris Lattner <sabre@nondot.org>2009-11-03 23:40:48 +0000
commitfc36a562aed22490d311c6d0b6d2b7d3430e49a7 (patch)
tree8421085b44ca3f8baa8ed3323c1f40eaffa98018 /test/Transforms/SCCP
parent5a1cd36019ca3cbae811f2800631b5b56a9ffdc2 (diff)
downloadllvm-fc36a562aed22490d311c6d0b6d2b7d3430e49a7.tar.gz
llvm-fc36a562aed22490d311c6d0b6d2b7d3430e49a7.tar.bz2
llvm-fc36a562aed22490d311c6d0b6d2b7d3430e49a7.tar.xz
reimplement multiple return value handling in IPSCCP, making it
more aggressive an correct. This survives building llvm in 64-bit mode with optimizations and the built llvm passes make check. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85973 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Transforms/SCCP')
-rw-r--r--test/Transforms/SCCP/ipsccp-basic.ll3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/Transforms/SCCP/ipsccp-basic.ll b/test/Transforms/SCCP/ipsccp-basic.ll
index 11edcf48be..e3699209a3 100644
--- a/test/Transforms/SCCP/ipsccp-basic.ll
+++ b/test/Transforms/SCCP/ipsccp-basic.ll
@@ -1,5 +1,4 @@
; RUN: opt < %s -ipsccp -S | FileCheck %s
-; XFAIL: *
;;======================== test1
@@ -128,7 +127,7 @@ B:
; CHECK: define i64 @test5b()
; CHECK: A:
; CHECK-NEXT: %c = call i64 @test5c(%0 %a)
-; CHECK-NEXT: ret i64 %c
+; CHECK-NEXT: ret i64 5
define internal i64 @test5c({i64,i64} %a) {
%b = extractvalue {i64,i64} %a, 0