mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-28 14:36:34 +00:00
794fa1f8f7
llvm-svn: 41097
11 lines
190 B
LLVM
11 lines
190 B
LLVM
; RUN: llvm-as < %s | opt -gvn | llvm-dis | not grep {%z2 =}
|
|
|
|
define i32 @main() {
|
|
block1:
|
|
%z1 = bitcast i32 0 to i32
|
|
br label %block2
|
|
block2:
|
|
%z2 = bitcast i32 0 to i32
|
|
ret i32 %z2
|
|
}
|