From: Pierre Muller Date: Fri, 13 Feb 2009 22:10:25 +0000 (+0000) Subject: 2009-02-13 Pierre Muller X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ff5e6054c295e987f498887943ab1b03ae8f140;p=binutils-gdb.git 2009-02-13 Pierre Muller * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro. Replace BSZ macro uses by XTENSA_ISA_BSZ macro. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f605628540c..fea85e94071 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2009-02-13 Pierre Muller + + * xtensa-tdep.c (call0_analyze_prologue): Delete BSZ macro. + Replace BSZ macro uses by XTENSA_ISA_BSZ macro. + 2009-02-12 Jan Kratochvil PR fortran/9806 diff --git a/gdb/xtensa-tdep.c b/gdb/xtensa-tdep.c index f219661f5d5..0ca54e403ff 100644 --- a/gdb/xtensa-tdep.c +++ b/gdb/xtensa-tdep.c @@ -2092,8 +2092,7 @@ call0_analyze_prologue (CORE_ADDR start, CORE_ADDR pc, CORE_ADDR litbase, CORE_ADDR ia; /* Current insn address in prologue. */ CORE_ADDR ba = 0; /* Current address at base of insn buffer. */ CORE_ADDR bt; /* Current address at top+1 of insn buffer. */ - #define BSZ 32 /* Instruction buffer size. */ - char ibuf[BSZ]; /* Instruction buffer for decoding prologue. */ + char ibuf[XTENSA_ISA_BSZ];/* Instruction buffer for decoding prologue. */ xtensa_isa isa; /* libisa ISA handle. */ xtensa_insnbuf ins, slot; /* libisa handle to decoded insn, slot. */ xtensa_format ifmt; /* libisa instruction format. */ @@ -2153,7 +2152,7 @@ call0_analyze_prologue (CORE_ADDR start, CORE_ADDR pc, CORE_ADDR litbase, if (!xtensa_default_isa) xtensa_default_isa = xtensa_isa_init (0, 0); isa = xtensa_default_isa; - gdb_assert (BSZ >= xtensa_isa_maxlength (isa)); + gdb_assert (XTENSA_ISA_BSZ >= xtensa_isa_maxlength (isa)); ins = xtensa_insnbuf_alloc (isa); slot = xtensa_insnbuf_alloc (isa); @@ -2166,7 +2165,7 @@ call0_analyze_prologue (CORE_ADDR start, CORE_ADDR pc, CORE_ADDR litbase, if (ia + xtensa_isa_maxlength (isa) > bt) { ba = ia; - bt = (ba + BSZ) < body_pc ? ba + BSZ : body_pc; + bt = (ba + XTENSA_ISA_BSZ) < body_pc ? ba + XTENSA_ISA_BSZ : body_pc; read_memory (ba, ibuf, bt - ba); }