From 22a40e6a7a8e313cea310503fb42c4b66f535843 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 4 Dec 2014 14:17:26 -0800 Subject: [PATCH] Use __arm__ instead of ARCH_ARM. Change-Id: I777da5757f01d8328d5475e654d56d81dc802655 --- libutils/SystemClock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,