Sign in
ara-mdk
/
platform
/
external
/
llvm
/
5193e4ebe216dd5a07ab9cc58d40de5aafaa990c
/
.
/
test
/
Transforms
/
InstCombine
/
binop-cast.ll
blob: 3dbca7ef148996b9c4176359b6898a39a7e88ac4 [
file
] [
log
] [
blame
]
; 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
}