mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-08-06 06:39:05 +08:00
* alpha-tdep.c (alpha_gdbarch_init): Use LL suffix for large
constants. * amd64-tdep.c (amd64_skip_prologue): Likewise. * ia64-tdep.c (examine_prologue): Likewise. * ns32k-tdep.c (ns32k_fix_call_dummy): Remove unused function. * v850-tdep.c (v850_fix_call_dummy): Likewise.
This commit is contained in:
@ -1116,7 +1116,7 @@ examine_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct frame_info *next_frame,
|
||||
if (next_pc == 0)
|
||||
break;
|
||||
|
||||
if (it == B && ((instr & 0x1e1f800003f) != 0x04000000000))
|
||||
if (it == B && ((instr & 0x1e1f800003fLL) != 0x04000000000LL))
|
||||
{
|
||||
/* Exit loop upon hitting a non-nop branch instruction. */
|
||||
if (trust_limit)
|
||||
@ -1228,7 +1228,7 @@ examine_prologue (CORE_ADDR pc, CORE_ADDR lim_pc, struct frame_info *next_frame,
|
||||
{
|
||||
cache->saved_regs[IA64_FR0_REGNUM + fM] = spill_addr;
|
||||
|
||||
if ((instr & 0x1efc0000000) == 0x0eec0000000)
|
||||
if ((instr & 0x1efc0000000LL) == 0x0eec0000000LL)
|
||||
spill_addr += imm;
|
||||
else
|
||||
spill_addr = 0; /* last one; must be done */
|
||||
|
Reference in New Issue
Block a user