blob: 24300352a62c3cad74741b5c60567ac754d18d3f [file] [log] [blame]
Chad Rosier5ea14e02014-06-11 18:28:45 +00001; RUN: opt < %s -reassociate -S | FileCheck %s
Chris Lattner4b474fc562002-05-15 17:22:01 +00002
Chad Rosier5ea14e02014-06-11 18:28:45 +00003define i32 @test1(i32 %A) {
4; CHECK-LABEL: test1
5; CHECK: ret i32 0
6 %X = add i32 %A, 1
7 %Y = add i32 %A, 1
8 %r = sub i32 %X, %Y
9 ret i32 %r
Chris Lattner4b474fc562002-05-15 17:22:01 +000010}