1 ; RUN: opt -passes=gvn -S %s | FileCheck %s
3 %MyStruct = type { i32, i32 }
4 define i8 @foo(i64 %in, ptr %arr) {
5 %addr = alloca %MyStruct
6 %dead = trunc i64 %in to i32
7 br i1 undef, label %next, label %tmp
14 store i64 %in, ptr %addr
18 %idx32 = load i32, ptr %addr
20 ; CHECK: %resptr = getelementptr i8, ptr %arr, i32 %dead
21 %resptr = getelementptr i8, ptr %arr, i32 %idx32
22 %res = load i8, ptr %resptr