summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2014-05-01 10:36:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-05-01 10:36:31 +0000
commit41f40581ee0284660d30be8ef28f6bf721c4ce10 (patch)
tree76da5e53d9141f3689a49bb91a360d005b4183ff
parent27b03e6272479ed82762a4a5d6e4be4f26c1ed58 (diff)
parentd6183204e438a738b68301aeac452c0be41c8cb3 (diff)
downloadbase-41f40581ee0284660d30be8ef28f6bf721c4ce10.tar.gz
Merge "Fix x86 build in app_process."
-rw-r--r--cmds/app_process/app_main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/app_process/app_main.cpp b/cmds/app_process/app_main.cpp
index 391c1977b6fe..74ccbc2b9220 100644
--- a/cmds/app_process/app_main.cpp
+++ b/cmds/app_process/app_main.cpp
@@ -145,7 +145,7 @@ static void maybeCreateDalvikCache() {
static const char kInstructionSet[] = "x86_64";
#elif defined(__arm__)
static const char kInstructionSet[] = "arm";
-#elif defined(__x86__)
+#elif defined(__i386__)
static const char kInstructionSet[] = "x86";
#elif defined (__mips__)
static const char kInstructionSet[] = "mips";