forked from OSchip/llvm-project
builtins: use thumb-2 if possible on comparesf2
This code can be built with thumb-2 like many of the other builtin routines. Enable that here as well. llvm-svn: 282530
This commit is contained in:
parent
4c31907dbf
commit
81eb5f6a60
|
@ -39,6 +39,9 @@
|
|||
|
||||
#include "../assembly.h"
|
||||
.syntax unified
|
||||
#if __ARM_ARCH_ISA_THUMB == 2
|
||||
.thumb
|
||||
#endif
|
||||
|
||||
.p2align 2
|
||||
DEFINE_COMPILERRT_FUNCTION(__eqsf2)
|
||||
|
|
Loading…
Reference in New Issue