diff options
Diffstat (limited to 'test/CodeGen/X86/sandybridge-loads.ll')
-rw-r--r-- | test/CodeGen/X86/sandybridge-loads.ll | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/CodeGen/X86/sandybridge-loads.ll b/test/CodeGen/X86/sandybridge-loads.ll index b8c364e..2e31154 100644 --- a/test/CodeGen/X86/sandybridge-loads.ll +++ b/test/CodeGen/X86/sandybridge-loads.ll @@ -8,10 +8,10 @@ ;CHECK: ret define void @wideloads(<8 x float>* %a, <8 x float>* %b, <8 x float>* %c) nounwind uwtable noinline ssp { - %v0 = load <8 x float>* %a, align 16 ; <---- unaligned! - %v1 = load <8 x float>* %b, align 32 ; <---- aligned! + %v0 = load <8 x float>, <8 x float>* %a, align 16 ; <---- unaligned! + %v1 = load <8 x float>, <8 x float>* %b, align 32 ; <---- aligned! %m0 = fcmp olt <8 x float> %v1, %v0 - %v2 = load <8 x float>* %c, align 32 ; <---- aligned! + %v2 = load <8 x float>, <8 x float>* %c, align 32 ; <---- aligned! %m1 = fcmp olt <8 x float> %v2, %v0 %mand = and <8 x i1> %m1, %m0 %r = zext <8 x i1> %mand to <8 x i32> @@ -30,8 +30,8 @@ define void @wideloads(<8 x float>* %a, <8 x float>* %b, <8 x float>* %c) nounwi ;CHECK: ret define void @widestores(<8 x float>* %a, <8 x float>* %b, <8 x float>* %c) nounwind uwtable noinline ssp { - %v0 = load <8 x float>* %a, align 32 - %v1 = load <8 x float>* %b, align 32 + %v0 = load <8 x float>, <8 x float>* %a, align 32 + %v1 = load <8 x float>, <8 x float>* %b, align 32 store <8 x float> %v0, <8 x float>* %b, align 32 ; <--- aligned store <8 x float> %v1, <8 x float>* %a, align 16 ; <--- unaligned ret void |