diff options
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/cortex-fp.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/cortex-fp.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Thumb2/cortex-fp.ll b/llvm/test/CodeGen/Thumb2/cortex-fp.ll index e63970a97e1..41e4b6873d4 100644 --- a/llvm/test/CodeGen/Thumb2/cortex-fp.ll +++ b/llvm/test/CodeGen/Thumb2/cortex-fp.ll @@ -6,7 +6,7 @@ define float @foo(float %a, float %b) { entry: ; CHECK-LABEL: foo: -; CORTEXM3: blx ___mulsf3 +; CORTEXM3: bl ___mulsf3 ; CORTEXM4: vmul.f32 s ; CORTEXA8: vmul.f32 d %0 = fmul float %a, %b @@ -17,8 +17,8 @@ define double @bar(double %a, double %b) { entry: ; CHECK-LABEL: bar: %0 = fmul double %a, %b -; CORTEXM3: blx ___muldf3 -; CORTEXM4: blx ___muldf3 +; CORTEXM3: bl ___muldf3 +; CORTEXM4: bl ___muldf3 ; CORTEXA8: vmul.f64 d ret double %0 } |