diff options
author | Duncan Sands <baldrick@free.fr> | 2010-03-14 21:08:40 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-03-14 21:08:40 +0000 |
commit | d2c817eff1d158398fb0a620fa762bf95207922f (patch) | |
tree | 6d8542443e4719af46003effa50d60f135c2b60a /include/llvm/CodeGen | |
parent | a8efe28a44996978faa42a387f1a6087a7b942c7 (diff) |
Turn calls to copysignl into an FCOPYSIGN node. Handle FCOPYSIGN nodes
with ppc_f128 type by having the type legalizer turn these back into a
call to copysignl.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98514 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/RuntimeLibcalls.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/RuntimeLibcalls.h b/include/llvm/CodeGen/RuntimeLibcalls.h index 0ac945b0fa..4ac316084c 100644 --- a/include/llvm/CodeGen/RuntimeLibcalls.h +++ b/include/llvm/CodeGen/RuntimeLibcalls.h @@ -150,6 +150,10 @@ namespace RTLIB { FLOOR_F64, FLOOR_F80, FLOOR_PPCF128, + COPYSIGN_F32, + COPYSIGN_F64, + COPYSIGN_F80, + COPYSIGN_PPCF128, // CONVERSION FPEXT_F32_F64, |