From 116e096528b54672ab60a35e88312ca57200232c Mon Sep 17 00:00:00 2001 From: Jan Kratochvil Date: Fri, 5 Dec 2008 18:25:01 +0000 Subject: Fix compilation on 32-bit host configurations. * ia64-tdep.c (ia64_breakpoint_from_pc): Suffix a constant by `LL'. --- gdb/ia64-tdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/ia64-tdep.c') diff --git a/gdb/ia64-tdep.c b/gdb/ia64-tdep.c index 5acd8b1..dc2d60a 100644 --- a/gdb/ia64-tdep.c +++ b/gdb/ia64-tdep.c @@ -749,7 +749,7 @@ ia64_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pcptr, int *lenptr) the parameter value. For L+X slot pair we are at the X slot (slot 2) so we should not touch the L slot - the upper 41 bits of the parameter. */ instr_fetched = slotN_contents (bundle, slotnum); - instr_fetched &= 0x1003ffffc0; + instr_fetched &= 0x1003ffffc0LL; replace_slotN_contents (bundle, instr_fetched, slotnum); *lenptr = BUNDLE_LEN - 2; -- cgit v1.1