You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; RUN: opt < %s -instcombine -S | FileCheck %s
|
|
|
|
define i32 @testAdd(i32 %X, i32 %Y) {
|
|
%tmp = add i32 %X, %Y
|
|
; CHECK: %tmp = add i32 %X, %Y
|
|
%tmp.l = bitcast i32 %tmp to i32
|
|
ret i32 %tmp.l
|
|
; CHECK: ret i32 %tmp
|
|
}
|