aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/X86/fma-do-not-commute.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/fma-do-not-commute.ll')
-rw-r--r--test/CodeGen/X86/fma-do-not-commute.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/fma-do-not-commute.ll b/test/CodeGen/X86/fma-do-not-commute.ll
index 4e21172..1f6a19c 100644
--- a/test/CodeGen/X86/fma-do-not-commute.ll
+++ b/test/CodeGen/X86/fma-do-not-commute.ll
@@ -18,8 +18,8 @@ entry:
loop:
%sum0 = phi float [ %fma, %loop ], [ %arg, %entry ]
- %addrVal = load float* %addr, align 4
- %addr2Val = load float* %addr2, align 4
+ %addrVal = load float, float* %addr, align 4
+ %addr2Val = load float, float* %addr2, align 4
%fmul = fmul float %addrVal, %addr2Val
%fma = fadd float %sum0, %fmul
br i1 true, label %exit, label %loop