diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-22 07:08:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-22 07:08:58 +0000 |
commit | bed6be62e4eaadeaf720dd4146bf069d39a443d5 (patch) | |
tree | c2f2007346d25943b4c6585dd1bced8fa524e9c0 | |
parent | f09619d53352acadfbaaf22ea9b68ebb87e0e069 (diff) | |
download | bcm5719-llvm-bed6be62e4eaadeaf720dd4146bf069d39a443d5.tar.gz bcm5719-llvm-bed6be62e4eaadeaf720dd4146bf069d39a443d5.zip |
fix a testcase.
llvm-svn: 62758
-rw-r--r-- | llvm/test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll b/llvm/test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll index 7a6128081bf..e65bafa6805 100644 --- a/llvm/test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll +++ b/llvm/test/Transforms/SimplifyCFG/2009-01-19-UnconditionalTrappingConstantExpr.ll @@ -1,5 +1,4 @@ ; RUN: llvm-as < %s | opt -simplifycfg | llvm-dis | grep {br i1 } | count 4 -; XFAIL: * ; PR3354 ; Do not merge bb1 into the entry block, it might trap. @@ -23,7 +22,7 @@ define i32 @test2(i32 %tmp21, i32 %tmp24, i1 %tmp34) { br i1 %tmp34, label %bb5, label %bb6 bb5: ; preds = %bb4 - br i1 icmp sgt (i32 sdiv (i32 32767, i32 0), i32 0), label %bb6, label %bb7 + br i1 icmp sgt (i32 sdiv (i32 32767, i32 ptrtoint (i32* @G to i32)), i32 0), label %bb6, label %bb7 bb6: ret i32 42 bb7: |