[PATCH] D35034: compiler-rt: use fp_t instead of long double, for consistency

Ed Maste via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Sep 9 06:49:56 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL371400: compiler-rt: use fp_t instead of long double, for consistency (authored by emaste, committed by ).
Herald added a subscriber: delcypher.

Changed prior to commit:
  https://reviews.llvm.org/D35034?vs=218494&id=219340#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D35034/new/

https://reviews.llvm.org/D35034

Files:
  compiler-rt/trunk/lib/builtins/addtf3.c
  compiler-rt/trunk/lib/builtins/divtf3.c
  compiler-rt/trunk/lib/builtins/extenddftf2.c
  compiler-rt/trunk/lib/builtins/extendsftf2.c


Index: compiler-rt/trunk/lib/builtins/addtf3.c
===================================================================
--- compiler-rt/trunk/lib/builtins/addtf3.c
+++ compiler-rt/trunk/lib/builtins/addtf3.c
@@ -16,7 +16,7 @@
 #if defined(CRT_HAS_128BIT) && defined(CRT_LDBL_128BIT)
 #include "fp_add_impl.inc"
 
-COMPILER_RT_ABI long double __addtf3(long double a, long double b) {
+COMPILER_RT_ABI fp_t __addtf3(fp_t a, fp_t b) {
   return __addXf3__(a, b);
 }
 
Index: compiler-rt/trunk/lib/builtins/extendsftf2.c
===================================================================
--- compiler-rt/trunk/lib/builtins/extendsftf2.c
+++ compiler-rt/trunk/lib/builtins/extendsftf2.c
@@ -14,7 +14,7 @@
 #define DST_QUAD
 #include "fp_extend_impl.inc"
 
-COMPILER_RT_ABI long double __extendsftf2(float a) {
+COMPILER_RT_ABI fp_t __extendsftf2(float a) {
   return __extendXfYf2__(a);
 }
 
Index: compiler-rt/trunk/lib/builtins/divtf3.c
===================================================================
--- compiler-rt/trunk/lib/builtins/divtf3.c
+++ compiler-rt/trunk/lib/builtins/divtf3.c
@@ -213,7 +213,7 @@
     // Round.
     absResult += round;
     // Insert the sign and return.
-    const long double result = fromRep(absResult | quotientSign);
+    const fp_t result = fromRep(absResult | quotientSign);
     return result;
   }
 }
Index: compiler-rt/trunk/lib/builtins/extenddftf2.c
===================================================================
--- compiler-rt/trunk/lib/builtins/extenddftf2.c
+++ compiler-rt/trunk/lib/builtins/extenddftf2.c
@@ -14,7 +14,7 @@
 #define DST_QUAD
 #include "fp_extend_impl.inc"
 
-COMPILER_RT_ABI long double __extenddftf2(double a) {
+COMPILER_RT_ABI fp_t __extenddftf2(double a) {
   return __extendXfYf2__(a);
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35034.219340.patch
Type: text/x-patch
Size: 1762 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190909/29b9d772/attachment.bin>


More information about the llvm-commits mailing list