diff options
Diffstat (limited to 'test/Transforms/Reassociate/2002-05-15-MissedTree.ll')
-rw-r--r-- | test/Transforms/Reassociate/2002-05-15-MissedTree.ll | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/Transforms/Reassociate/2002-05-15-MissedTree.ll b/test/Transforms/Reassociate/2002-05-15-MissedTree.ll new file mode 100644 index 0000000..e8bccbd --- /dev/null +++ b/test/Transforms/Reassociate/2002-05-15-MissedTree.ll @@ -0,0 +1,9 @@ +; RUN: opt < %s -reassociate -instcombine -constprop -die -S | not grep 5 + +define i32 @test(i32 %A, i32 %B) { + %W = add i32 %B, -5 ; <i32> [#uses=1] + %Y = add i32 %A, 5 ; <i32> [#uses=1] + %Z = add i32 %W, %Y ; <i32> [#uses=1] + ret i32 %Z +} + |