Commit b4232589 by Richard Kenner

(CONST_OK_FOR_LETTER_P): Make `N' match range 0..255 for `outb'

instruction.

From-SVN: r10393
parent 61d2941a
...@@ -657,6 +657,7 @@ enum reg_class ...@@ -657,6 +657,7 @@ enum reg_class
(C) == 'K' ? (VALUE) == 0xff : \ (C) == 'K' ? (VALUE) == 0xff : \
(C) == 'L' ? (VALUE) == 0xffff : \ (C) == 'L' ? (VALUE) == 0xffff : \
(C) == 'M' ? (VALUE) >= 0 && (VALUE) <= 3 : \ (C) == 'M' ? (VALUE) >= 0 && (VALUE) <= 3 : \
(C) == 'N' ? (VALUE) >= 0 && (VALUE) <= 255 :\
0) 0)
/* Similar, but for floating constants, and defining letters G and H. /* Similar, but for floating constants, and defining letters G and H.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment