diff options
Diffstat (limited to 'test/CodeGen/X86/load-slice.ll')
-rw-r--r-- | test/CodeGen/X86/load-slice.ll | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/CodeGen/X86/load-slice.ll b/test/CodeGen/X86/load-slice.ll index 49eb131..7f3dd63 100644 --- a/test/CodeGen/X86/load-slice.ll +++ b/test/CodeGen/X86/load-slice.ll @@ -46,22 +46,22 @@ ; REGULAR-NEXT: vmovq [[RES_Vec]], ([[BASE]]) define void @t1(%class.Complex* nocapture %out, i64 %out_start) { entry: - %arrayidx = getelementptr inbounds %class.Complex* %out, i64 %out_start + %arrayidx = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %out_start %tmp = bitcast %class.Complex* %arrayidx to i64* - %tmp1 = load i64* %tmp, align 8 + %tmp1 = load i64, i64* %tmp, align 8 %t0.sroa.0.0.extract.trunc = trunc i64 %tmp1 to i32 %tmp2 = bitcast i32 %t0.sroa.0.0.extract.trunc to float %t0.sroa.2.0.extract.shift = lshr i64 %tmp1, 32 %t0.sroa.2.0.extract.trunc = trunc i64 %t0.sroa.2.0.extract.shift to i32 %tmp3 = bitcast i32 %t0.sroa.2.0.extract.trunc to float %add = add i64 %out_start, 8 - %arrayidx2 = getelementptr inbounds %class.Complex* %out, i64 %add - %i.i = getelementptr inbounds %class.Complex* %arrayidx2, i64 0, i32 0 - %tmp4 = load float* %i.i, align 4 + %arrayidx2 = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %add + %i.i = getelementptr inbounds %class.Complex, %class.Complex* %arrayidx2, i64 0, i32 0 + %tmp4 = load float, float* %i.i, align 4 %add.i = fadd float %tmp4, %tmp2 %retval.sroa.0.0.vec.insert.i = insertelement <2 x float> undef, float %add.i, i32 0 - %r.i = getelementptr inbounds %class.Complex* %arrayidx2, i64 0, i32 1 - %tmp5 = load float* %r.i, align 4 + %r.i = getelementptr inbounds %class.Complex, %class.Complex* %arrayidx2, i64 0, i32 1 + %tmp5 = load float, float* %r.i, align 4 %add5.i = fadd float %tmp5, %tmp3 %retval.sroa.0.4.vec.insert.i = insertelement <2 x float> %retval.sroa.0.0.vec.insert.i, float %add5.i, i32 1 %ref.tmp.sroa.0.0.cast = bitcast %class.Complex* %arrayidx to <2 x float>* @@ -100,9 +100,9 @@ declare void @llvm.lifetime.end(i64, i8* nocapture) ; REGULAR-LABEL: t2: ; REGULAR: shrq $48 define i32 @t2(%class.Complex* nocapture %out, i64 %out_start) { - %arrayidx = getelementptr inbounds %class.Complex* %out, i64 %out_start + %arrayidx = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %out_start %bitcast = bitcast %class.Complex* %arrayidx to i64* - %chunk64 = load i64* %bitcast, align 8 + %chunk64 = load i64, i64* %bitcast, align 8 %slice32_low = trunc i64 %chunk64 to i32 %shift48 = lshr i64 %chunk64, 48 %slice32_high = trunc i64 %shift48 to i32 @@ -125,9 +125,9 @@ define i32 @t2(%class.Complex* nocapture %out, i64 %out_start) { ; REGULAR: shrq $48 ; REGULAR: shrq $32 define i32 @t3(%class.Complex* nocapture %out, i64 %out_start) { - %arrayidx = getelementptr inbounds %class.Complex* %out, i64 %out_start + %arrayidx = getelementptr inbounds %class.Complex, %class.Complex* %out, i64 %out_start %bitcast = bitcast %class.Complex* %arrayidx to i64* - %chunk64 = load i64* %bitcast, align 8 + %chunk64 = load i64, i64* %bitcast, align 8 %slice32_low = trunc i64 %chunk64 to i32 %shift48 = lshr i64 %chunk64, 48 %slice32_high = trunc i64 %shift48 to i32 |