disable use of arm memcpy asm if building as thumb code

the thumb incompatibilities in the asm are probably only minor and
should be fixable, but for now just use the C version.
This commit is contained in:
Rich Felker
2016-12-17 19:39:28 -05:00
parent fbbeda172d
commit 9067a3006e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
#if __ARMEB__
#if __ARMEB__ || __thumb__
#include "../memcpy.c"
#endif
+1 -1
View File
@@ -1,4 +1,4 @@
#ifndef __ARMEB__
#if !__ARMEB__ && !__thumb__
/*
* Copyright (C) 2008 The Android Open Source Project