1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00
2016-07-17 23:21:26 +00:00

17 lines
309 B
LLVM

; RUN: opt < %s -gvn -S | FileCheck %s
; RUN: opt < %s -passes=gvn -S | FileCheck %s
define i32 @main() {
block1:
%z1 = bitcast i32 0 to i32
br label %block2
block2:
%z2 = bitcast i32 0 to i32
ret i32 %z2
}
; CHECK: define i32 @main() {
; CHECK-NEXT: block1:
; CHECK-NEXT: ret i32 0
; CHECK-NEXT: }