[PATCH] D62723: [compiler-rt][builtins] Fix typo in definition of __aeabi_fcmpun

Konstantin Schwarz via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 31 02:16:12 PDT 2019


kschwarz created this revision.
kschwarz added reviewers: compnerd, weimingz.
Herald added subscribers: llvm-commits, Sanitizers, kristof.beyls, javed.absar, dberris.
Herald added projects: Sanitizers, LLVM.

If COMPILER_RT_ARMHF_TARGET is set , the definition of the AEABI runtime function __aeabi_fcmpun is misspelled: __aeabi_fcmpum instead of __aeabi_fcmpun.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D62723

Files:
  compiler-rt/lib/builtins/arm/comparesf2.S


Index: compiler-rt/lib/builtins/arm/comparesf2.S
===================================================================
--- compiler-rt/lib/builtins/arm/comparesf2.S
+++ compiler-rt/lib/builtins/arm/comparesf2.S
@@ -248,11 +248,11 @@
 END_COMPILERRT_FUNCTION(__unordsf2)
 
 #if defined(COMPILER_RT_ARMHF_TARGET)
-DEFINE_COMPILERRT_FUNCTION(__aeabi_fcmpum)
+DEFINE_COMPILERRT_FUNCTION(__aeabi_fcmpun)
 	vmov s0, r0
 	vmov s1, r1
 	b SYMBOL_NAME(__unordsf2)
-END_COMPILERRT_FUNCTION(__aeabi_fcmpum)
+END_COMPILERRT_FUNCTION(__aeabi_fcmpun)
 #else
 DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_fcmpun, __unordsf2)
 #endif


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D62723.202394.patch
Type: text/x-patch
Size: 607 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190531/02e66d08/attachment.bin>


More information about the llvm-commits mailing list