am 41f40581: Merge "Fix x86 build in app_process."

* commit '41f40581ee0284660d30be8ef28f6bf721c4ce10':
  Fix x86 build in app_process.
This commit is contained in:
Narayan Kamath
2014-05-01 10:39:55 +00:00
committed by Android Git Automerger

View File

@ -145,7 +145,7 @@ static void maybeCreateDalvikCache() {
static const char kInstructionSet[] = "x86_64"; static const char kInstructionSet[] = "x86_64";
#elif defined(__arm__) #elif defined(__arm__)
static const char kInstructionSet[] = "arm"; static const char kInstructionSet[] = "arm";
#elif defined(__x86__) #elif defined(__i386__)
static const char kInstructionSet[] = "x86"; static const char kInstructionSet[] = "x86";
#elif defined (__mips__) #elif defined (__mips__)
static const char kInstructionSet[] = "mips"; static const char kInstructionSet[] = "mips";