summaryrefslogtreecommitdiffstats
path: root/libutils
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-12-04 14:17:26 -0800
committerElliott Hughes <enh@google.com>2014-12-04 14:17:26 -0800
commit22a40e6a7a8e313cea310503fb42c4b66f535843 (patch)
tree6547b46b06a0542c7bae3f78ef4c55feaf7a6912 /libutils
parent8163104b3feb575a321b194a70ecb9873a70b29d (diff)
downloadsystem_core-22a40e6a7a8e313cea310503fb42c4b66f535843.tar.gz
system_core-22a40e6a7a8e313cea310503fb42c4b66f535843.tar.bz2
system_core-22a40e6a7a8e313cea310503fb42c4b66f535843.zip
Use __arm__ instead of ARCH_ARM.
Change-Id: I777da5757f01d8328d5475e654d56d81dc802655
Diffstat (limited to 'libutils')
-rw-r--r--libutils/SystemClock.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libutils/SystemClock.cpp b/libutils/SystemClock.cpp
index dbad581ff..ac3dd987b 100644
--- a/libutils/SystemClock.cpp
+++ b/libutils/SystemClock.cpp
@@ -68,7 +68,7 @@ int64_t elapsedRealtime()
*/
#define DEBUG_TIMESTAMP 0
-#if DEBUG_TIMESTAMP && defined(ARCH_ARM)
+#if DEBUG_TIMESTAMP && defined(__arm__)
static inline void checkTimeStamps(int64_t timestamp,
int64_t volatile *prevTimestampPtr,
int volatile *prevMethodPtr,