1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00
llvm-mirror/test/Transforms/GVNPRE/gep.ll
2009-09-08 22:34:10 +00:00

18 lines
335 B
LLVM

; RUN: opt %s -gvnpre -S | grep b.gvnpre
define i32 @extract({ i32 }* %P) {
entry: ; preds = %cond_false, %entry
br i1 true, label %cond_true, label %cond_false
cond_true:
br label %end
cond_false:
%a = getelementptr { i32 }* %P, i32 0, i32 0
br label %end
end:
%b = getelementptr { i32 }* %P, i32 0, i32 0
ret i32 0
}