From: Gabe Black Date: Thu, 3 Mar 2011 06:53:11 +0000 (-0800) Subject: Statetrace: Fix the i686 detection macro. X-Git-Tag: stable_2012_02_02~490 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3bcd77ddef91c204b6fceceaf6bd5c9362bf1f98;p=gem5.git Statetrace: Fix the i686 detection macro. --- diff --git a/util/statetrace/base/arch_check.h b/util/statetrace/base/arch_check.h index db513a08e..ab350e5c7 100644 --- a/util/statetrace/base/arch_check.h +++ b/util/statetrace/base/arch_check.h @@ -46,7 +46,7 @@ #endif #elif defined __STATETRACE_I386__ #if !(defined __i386__ || defined __i486__ || \ - defined __i586__ || defined __i686) + defined __i586__ || defined __i686__) #error "I386 toolchain required." #endif #elif defined __STATETRACE_IA64__