Fix LP64 bug.
This commit is contained in:
parent
8652f3d5d3
commit
1bafa7eae6
|
@ -7083,7 +7083,7 @@ print_operand (file, x, code)
|
||||||
|
|
||||||
if (ASSEMBLER_DIALECT == ASM_ATT)
|
if (ASSEMBLER_DIALECT == ASM_ATT)
|
||||||
putc ('$', file);
|
putc ('$', file);
|
||||||
fprintf (file, "0x%lx", l);
|
fprintf (file, "0x%lx", l & 0xffffffff);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* These float cases don't actually occur as immediate operands. */
|
/* These float cases don't actually occur as immediate operands. */
|
||||||
|
|
Loading…
Reference in New Issue