Remove unneeded references to arm_asm.h
This should result in no functional changes, it simply removes references to arm_asm.h that did not use anything from that file.
This commit is contained in:
parent
3cf29149be
commit
e7332409cc
|
@ -25,7 +25,7 @@ lib_a_CFLAGS = $(AM_CFLAGS)
|
|||
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||
|
||||
MEMCHR_DEP=acle-compat.h arm_asm.h
|
||||
MEMCHR_DEP=acle-compat.h
|
||||
MEMCPY_DEP=memcpy-armv7a.S memcpy-armv7m.S
|
||||
STRCMP_DEP=strcmp-arm-tiny.S strcmp-armv4.S strcmp-armv4t.S strcmp-armv6.S \
|
||||
strcmp-armv6m.S strcmp-armv7.S strcmp-armv7m.S
|
||||
|
|
|
@ -215,7 +215,7 @@ lib_a_CCASFLAGS = $(AM_CCASFLAGS)
|
|||
lib_a_CFLAGS = $(AM_CFLAGS)
|
||||
ACLOCAL_AMFLAGS = -I ../../.. -I ../../../..
|
||||
CONFIG_STATUS_DEPENDENCIES = $(newlib_basedir)/configure.host
|
||||
MEMCHR_DEP = acle-compat.h arm_asm.h
|
||||
MEMCHR_DEP = acle-compat.h
|
||||
MEMCPY_DEP = memcpy-armv7a.S memcpy-armv7m.S
|
||||
STRCMP_DEP = strcmp-arm-tiny.S strcmp-armv4.S strcmp-armv4t.S strcmp-armv6.S \
|
||||
strcmp-armv6m.S strcmp-armv7.S strcmp-armv7m.S
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "arm_asm.h"
|
||||
#include "acle-compat.h"
|
||||
|
||||
/* NOTE: This ifdef MUST match the one in aeabi_memcpy.c. */
|
||||
#if defined (__ARM_ARCH_7A__) && defined (__ARM_FEATURE_UNALIGNED) && \
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "arm_asm.h"
|
||||
|
||||
.macro ASM_ALIAS new old
|
||||
.global \new
|
||||
.type \new, %function
|
||||
|
|
|
@ -26,8 +26,6 @@
|
|||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include "arm_asm.h"
|
||||
|
||||
.macro ASM_ALIAS new old
|
||||
.global \new
|
||||
.type \new, %function
|
||||
|
|
|
@ -76,7 +76,6 @@
|
|||
.syntax unified
|
||||
|
||||
#include "acle-compat.h"
|
||||
#include "arm_asm.h"
|
||||
|
||||
@ NOTE: This ifdef MUST match the one in memchr-stub.c
|
||||
#if __ARM_ARCH_ISA_THUMB >= 2 && defined (__ARM_FEATURE_DSP)
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
/* Wrapper for the various implementations of strcmp. */
|
||||
|
||||
#include "arm_asm.h"
|
||||
#include "acle-compat.h"
|
||||
|
||||
#ifdef __ARM_BIG_ENDIAN
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
|
||||
|
||||
#include "arm_asm.h"
|
||||
#include "acle-compat.h"
|
||||
|
||||
.macro def_fn f p2align=0
|
||||
.text
|
||||
|
|
Loading…
Reference in New Issue