1; RUN: llc < %s -march=x86 > %t
2; RUN: grep "movb.7(%...)" %t
3; RUN: not grep leal %t
4
5define i8 @test(i32 *%P) nounwind {
6  %Q = getelementptr i32* %P, i32 1
7  %R = bitcast i32* %Q to i8*
8  %S = load i8* %R
9  %T = icmp eq i8 %S, 0
10  br i1 %T, label %TB, label %F
11TB:
12  ret i8 4
13F:
14  %U = getelementptr i8* %R, i32 3
15  %V = load i8* %U
16  ret i8 %V
17}
18