diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-09-07 03:17:19 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2016-09-07 03:17:19 +0000 |
commit | a7ade33d163f1aee55abfec1877fe34fc4271229 (patch) | |
tree | 05dc1a983077e98d90c7bd5d0a07471bbe747517 /llvm/test/CodeGen/Thumb2/float-ops.ll | |
parent | f8e7a54be82fad657f4f5157c130e06a8ea26ad9 (diff) | |
download | bcm5719-llvm-a7ade33d163f1aee55abfec1877fe34fc4271229.tar.gz bcm5719-llvm-a7ade33d163f1aee55abfec1877fe34fc4271229.zip |
Revert "CodeGen: ensure that libcalls are always AAPCS CC"
This reverts SVN r280683. Revert until I figure out why this is breaking lli
tests.
llvm-svn: 280778
Diffstat (limited to 'llvm/test/CodeGen/Thumb2/float-ops.ll')
-rw-r--r-- | llvm/test/CodeGen/Thumb2/float-ops.ll | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/Thumb2/float-ops.ll b/llvm/test/CodeGen/Thumb2/float-ops.ll index 4101984e3f7..c9f93f2d613 100644 --- a/llvm/test/CodeGen/Thumb2/float-ops.ll +++ b/llvm/test/CodeGen/Thumb2/float-ops.ll @@ -4,7 +4,6 @@ ; RUN: llc < %s -mtriple=thumbv7-none-eabihf -mcpu=cortex-a8 | FileCheck %s -check-prefix=CHECK -check-prefix=HARD -check-prefix=DP -check-prefix=VFP4-ALL -check-prefix=VFP4-DP define float @add_f(float %a, float %b) { - entry: ; CHECK-LABEL: add_f: ; NONE: bl __aeabi_fadd @@ -84,7 +83,7 @@ define float @rem_f(float %a, float %b) { entry: ; CHECK-LABEL: rem_f: ; NONE: bl fmodf -; HARD: bl fmodf +; HARD: b fmodf %0 = frem float %a, %b ret float %0 } @@ -93,7 +92,7 @@ define double @rem_d(double %a, double %b) { entry: ; CHECK-LABEL: rem_d: ; NONE: bl fmod -; HARD: bl fmod +; HARD: b fmod %0 = frem double %a, %b ret double %0 } |