diff options
Diffstat (limited to 'gcc/config/i386/i386.c')
-rw-r--r-- | gcc/config/i386/i386.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 579b4a3..a2ec4d8 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -7918,6 +7918,10 @@ print_operand (FILE *file, rtx x, int code) /* This is the size of op from size of operand. */ switch (GET_MODE_SIZE (GET_MODE (x))) { + case 1: + putc ('b', file); + return; + case 2: #ifdef HAVE_GAS_FILDS_FISTS putc ('s', file); |