commit ff53f2258da52d2f35c4cb38b9e31406d48264c3 parent e562f219cf4abb9219f0cbd8d5c423603ce66cad Author: Quentin Carbonneaux <quentin.carbonneaux@yale.edu> Date: Tue, 12 Apr 2016 13:46:57 -0400 fix wrong isext() macro Diffstat:
| M | all.h | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/all.h b/all.h @@ -246,7 +246,7 @@ enum Op { OExtuh, OExtsw, OExtuw, -#define isext(o) (OExtsw <= o && o <= OExtuw) +#define isext(o) (OExtsb <= o && o <= OExtuw) OExts, OTruncd,