17 lines · plain
1; RUN: opt < %s -passes=instcombine -S | FileCheck %s2 3target datalayout = "e-p:32:32:32-i1:8:32-i8:8:32-i16:16:32-i32:32:32-i64:32:32-f32:32:32-f64:32:32-v64:64:64-v128:128:128-a0:0:32-n32"4 5@a = constant [2 x i32] [i32 3, i32 6] ; <ptr> [#uses=2]6 7define i32 @b(i32 %y) nounwind readonly {8; CHECK-LABEL: @b(9; CHECK-NOT: load10; CHECK: ret i3211entry:12 %0 = icmp eq i32 %y, 0 ; <i1> [#uses=1]13 %storemerge = select i1 %0, ptr getelementptr inbounds ([2 x i32], ptr @a, i32 0, i32 1), ptr @a ; <ptr> [#uses=1]14 %1 = load i32, ptr %storemerge, align 4 ; <i32> [#uses=1]15 ret i32 %116}17