Merge "Fix warning about undefined __LP64__"
This commit is contained in:
@@ -578,7 +578,7 @@
|
||||
#define __BIONIC_FORTIFY_UNKNOWN_SIZE ((size_t) -1)
|
||||
|
||||
|
||||
#if defined(__ANDROID__) && !__LP64__ && defined( __arm__)
|
||||
#if defined(__ANDROID__) && !defined(__LP64__) && defined( __arm__)
|
||||
#define __NDK_FPABI__ __attribute__((pcs("aapcs")))
|
||||
#else
|
||||
#define __NDK_FPABI__
|
||||
|
||||
@@ -545,7 +545,7 @@
|
||||
^
|
||||
a.i:564:6: note: previous declaration is here
|
||||
*/
|
||||
#if defined(__ANDROID__) && !__LP64__ && defined( __arm__)
|
||||
#if defined(__ANDROID__) && !defined(__LP64__) && defined( __arm__)
|
||||
#define __NDK_FPABI__ __attribute__((pcs("aapcs")))
|
||||
#else
|
||||
#define __NDK_FPABI__
|
||||
|
||||
@@ -514,7 +514,7 @@
|
||||
^
|
||||
a.i:564:6: note: previous declaration is here
|
||||
*/
|
||||
#if defined(__ANDROID__) && !__LP64__ && defined( __arm__)
|
||||
#if defined(__ANDROID__) && !defined(__LP64__) && defined( __arm__)
|
||||
#define __NDK_FPABI__ __attribute__((pcs("aapcs")))
|
||||
#else
|
||||
#define __NDK_FPABI__
|
||||
|
||||
Reference in New Issue
Block a user