OSDN Git Service

ART: Fix mips typo
authorAndreas Gampe <agampe@google.com>
Wed, 14 Jan 2015 06:16:40 +0000 (22:16 -0800)
committerAndreas Gampe <agampe@google.com>
Wed, 14 Jan 2015 06:16:40 +0000 (22:16 -0800)
Use the supplied memcmp16 assembly implementation.

Change-Id: I5a7d0b4d8c39cfbbc99720e151fd99d79cdbe0c4

runtime/arch/memcmp16.h

index 4b9fb8e..c449a14 100644 (file)
@@ -30,7 +30,7 @@
 //
 // In both cases, MemCmp16 is declared.
 
-#if defined(__aarch64__) || defined(__arm__) || defined(__mips) || defined(__i386__) || defined(__x86_64__)
+#if defined(__aarch64__) || defined(__arm__) || defined(__mips__) || defined(__i386__) || defined(__x86_64__)
 
 extern "C" uint32_t __memcmp16(const uint16_t* s0, const uint16_t* s1, size_t count);
 #define MemCmp16 __memcmp16