mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
4d633eaaae
llvm-svn: 83828
10 lines
214 B
LLVM
10 lines
214 B
LLVM
; 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
|
|
}
|