X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Fisel-sink2.ll;h=65f1994b9fe1394b8069e895934181fac53b17a1;hb=49c8f7512a37b53bf459e51241935ab4ab67ef38;hp=7cfd73a09517e6df1b736a29e528afe1970a6170;hpb=198d8baafbfdfcf5a5e219602a5d94ed263973b4;p=oota-llvm.git diff --git a/test/CodeGen/X86/isel-sink2.ll b/test/CodeGen/X86/isel-sink2.ll index 7cfd73a0951..65f1994b9fe 100644 --- a/test/CodeGen/X86/isel-sink2.ll +++ b/test/CodeGen/X86/isel-sink2.ll @@ -5,13 +5,13 @@ define i8 @test(i32 *%P) nounwind { %Q = getelementptr i32, i32* %P, i32 1 %R = bitcast i32* %Q to i8* - %S = load i8* %R + %S = load i8, i8* %R %T = icmp eq i8 %S, 0 br i1 %T, label %TB, label %F TB: ret i8 4 F: %U = getelementptr i8, i8* %R, i32 3 - %V = load i8* %U + %V = load i8, i8* %U ret i8 %V }