Fix LP64 bug.

This commit is contained in:
matt 2003-10-26 01:32:22 +00:00
parent 8652f3d5d3
commit 1bafa7eae6
1 changed files with 1 additions and 1 deletions

View File

@ -7083,7 +7083,7 @@ print_operand (file, x, code)
if (ASSEMBLER_DIALECT == ASM_ATT)
putc ('$', file);
fprintf (file, "0x%lx", l);
fprintf (file, "0x%lx", l & 0xffffffff);
}
/* These float cases don't actually occur as immediate operands. */