From: Richard Kenner Date: Fri, 22 Sep 1995 22:43:40 +0000 (-0400) Subject: (CONST_OK_FOR_LETTER_P): Make `N' match range 0..255 for `outb' X-Git-Tag: misc/cutover-egcs-0~3571 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b42325894a0e6d7967d120fc1aefbf76821260d8;p=thirdparty%2Fgcc.git (CONST_OK_FOR_LETTER_P): Make `N' match range 0..255 for `outb' instruction. From-SVN: r10393 --- diff --git a/gcc/config/i386/i386.h b/gcc/config/i386/i386.h index 3aefd10f8d26..b00b0e509c5b 100644 --- a/gcc/config/i386/i386.h +++ b/gcc/config/i386/i386.h @@ -657,6 +657,7 @@ enum reg_class (C) == 'K' ? (VALUE) == 0xff : \ (C) == 'L' ? (VALUE) == 0xffff : \ (C) == 'M' ? (VALUE) >= 0 && (VALUE) <= 3 : \ + (C) == 'N' ? (VALUE) >= 0 && (VALUE) <= 255 :\ 0) /* Similar, but for floating constants, and defining letters G and H.