From ff53f2258da52d2f35c4cb38b9e31406d48264c3 Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Tue, 12 Apr 2016 13:46:57 -0400 Subject: fix wrong isext() macro --- all.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/all.h b/all.h index c6e2acb..74feafe 100644 --- 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, -- cgit 1.4.1