Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/gnu/dist/gcc/gcc/config/i386 Fix LP64 bug.
details: https://anonhg.NetBSD.org/src/rev/81fa8d338e5f
branches: trunk
changeset: 554208:81fa8d338e5f
user: matt <matt%NetBSD.org@localhost>
date: Sun Oct 26 01:32:22 2003 +0000
description:
Fix LP64 bug.
diffstat:
gnu/dist/gcc/gcc/config/i386/i386.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r cd48e04415af -r 81fa8d338e5f gnu/dist/gcc/gcc/config/i386/i386.c
--- a/gnu/dist/gcc/gcc/config/i386/i386.c Sun Oct 26 01:29:34 2003 +0000
+++ b/gnu/dist/gcc/gcc/config/i386/i386.c Sun Oct 26 01:32:22 2003 +0000
@@ -7083,7 +7083,7 @@
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. */
Home |
Main Index |
Thread Index |
Old Index