mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-29 08:24:05 +08:00
Excise C++ style comments.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2000-10-04 Ralf Baechle <ralf@gnu.org>
|
||||||
|
|
||||||
|
* config/tc-ia64.c (operand_match): Don't use // style comments.
|
||||||
|
* config/tc-i370.c: Likewise.
|
||||||
|
|
||||||
2000-09-29 Hans-Peter Nilsson <hp@axis.com>
|
2000-09-29 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
Changes to handle varying register prefix and user symbol prefix.
|
Changes to handle varying register prefix and user symbol prefix.
|
||||||
|
@ -552,7 +552,7 @@ i370_set_cpu ()
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Figure out the BFD architecture to use. */
|
/* Figure out the BFD architecture to use. */
|
||||||
// hack alert -- specify the different 370 architectures
|
/* hack alert -- specify the different 370 architectures */
|
||||||
|
|
||||||
enum bfd_architecture
|
enum bfd_architecture
|
||||||
i370_arch ()
|
i370_arch ()
|
||||||
@ -656,14 +656,13 @@ i370_insert_operand (insn, operand, val)
|
|||||||
|
|
||||||
#ifdef OBJ_ELF
|
#ifdef OBJ_ELF
|
||||||
/* Parse @got, etc. and return the desired relocation.
|
/* Parse @got, etc. and return the desired relocation.
|
||||||
* Currently, i370 does not support (don't really need to support) any
|
Currently, i370 does not support (don't really need to support) any
|
||||||
* of these fancier markups ... for example, no one is going to
|
of these fancier markups ... for example, no one is going to
|
||||||
* write 'L 6,=V(bogus)@got' it just doesn't make sense (at least to me).
|
write 'L 6,=V(bogus)@got' it just doesn't make sense (at least to me).
|
||||||
* So basically, we could get away with this routine returning
|
So basically, we could get away with this routine returning
|
||||||
* BFD_RELOC_UNUSED in all circumstances. However, I'll leave
|
BFD_RELOC_UNUSED in all circumstances. However, I'll leave
|
||||||
* in for now in case someone ambitious finds a good use for this stuff ...
|
in for now in case someone ambitious finds a good use for this stuff ...
|
||||||
* this routine was pretty much just copied from the powerpc code ...
|
this routine was pretty much just copied from the powerpc code ... */
|
||||||
*/
|
|
||||||
static bfd_reloc_code_real_type
|
static bfd_reloc_code_real_type
|
||||||
i370_elf_suffix (str_p, exp_p)
|
i370_elf_suffix (str_p, exp_p)
|
||||||
char **str_p;
|
char **str_p;
|
||||||
@ -687,11 +686,14 @@ i370_elf_suffix (str_p, exp_p)
|
|||||||
|
|
||||||
static struct map_bfd mapping[] =
|
static struct map_bfd mapping[] =
|
||||||
{
|
{
|
||||||
// MAP ("l", BFD_RELOC_LO16),
|
#if 0
|
||||||
// MAP ("h", BFD_RELOC_HI16),
|
MAP ("l", BFD_RELOC_LO16),
|
||||||
// MAP ("ha", BFD_RELOC_HI16_S),
|
MAP ("h", BFD_RELOC_HI16),
|
||||||
MAP ("fixup", BFD_RELOC_CTOR), /* warnings with -mrelocatable */
|
MAP ("ha", BFD_RELOC_HI16_S),
|
||||||
{ (char *)0, 0, BFD_RELOC_UNUSED }
|
#endif
|
||||||
|
/* warnings with -mrelocatable. */
|
||||||
|
MAP ("fixup", BFD_RELOC_CTOR),
|
||||||
|
{ (char *)0, 0, BFD_RELOC_UNUSED }
|
||||||
};
|
};
|
||||||
|
|
||||||
if (*str++ != '@')
|
if (*str++ != '@')
|
||||||
|
@ -7910,7 +7910,7 @@ note_register_values (idesc)
|
|||||||
else if (strncmp (idesc->name, "br.call", 6) == 0
|
else if (strncmp (idesc->name, "br.call", 6) == 0
|
||||||
|| strncmp (idesc->name, "brl.call", 7) == 0)
|
|| strncmp (idesc->name, "brl.call", 7) == 0)
|
||||||
{
|
{
|
||||||
// FIXME keep GR values which are marked as "safe_across_calls"
|
/* FIXME keep GR values which are marked as "safe_across_calls" */
|
||||||
clear_register_values ();
|
clear_register_values ();
|
||||||
clear_qp_mutex (~qp_safe_across_calls);
|
clear_qp_mutex (~qp_safe_across_calls);
|
||||||
clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
|
clear_qp_implies (~qp_safe_across_calls, ~qp_safe_across_calls);
|
||||||
|
Reference in New Issue
Block a user