X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2Ffast-isel-fptrunc-fpext.ll;h=e4e9aeaa262e51a2dd0cfd207ccb375ff3b38f76;hb=a0eb8033762a1a4765c06957419eb889ddace887;hp=90a0537155b1e5855b0248e299faecbf53836998;hpb=26d628d6ce20548dcb7c99a9519b9034bbf9f5e7;p=oota-llvm.git diff --git a/test/CodeGen/X86/fast-isel-fptrunc-fpext.ll b/test/CodeGen/X86/fast-isel-fptrunc-fpext.ll index 90a0537155b..e4e9aeaa262 100644 --- a/test/CodeGen/X86/fast-isel-fptrunc-fpext.ll +++ b/test/CodeGen/X86/fast-isel-fptrunc-fpext.ll @@ -47,7 +47,7 @@ define double @single_to_double_rm(float* %x) { ; AVX-NEXT: vcvtss2sd %xmm0, %xmm0, %xmm0 ; ALL-NEXT: ret entry: - %0 = load float* %x, align 4 + %0 = load float, float* %x, align 4 %conv = fpext float %0 to double ret double %conv } @@ -59,7 +59,7 @@ define float @double_to_single_rm(double* %x) { ; AVX-NEXT: vcvtsd2ss %xmm0, %xmm0, %xmm0 ; ALL-NEXT: ret entry: - %0 = load double* %x, align 8 + %0 = load double, double* %x, align 8 %conv = fptrunc double %0 to float ret float %conv }