Fix warning about undefined __LP64__

See b.android.com/69975

Change-Id: If7f2b6fa29c36221b1a0d31a334cb34cecb4e8bc
This commit is contained in:
Andrew Hsieh
2014-06-02 14:43:48 +08:00
parent 550e44253f
commit e85f942ec6
3 changed files with 3 additions and 3 deletions

View File

@@ -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__