mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 06:17:47 +08:00
Change // comment in gdb/compile/
This commit is contained in:
@ -351,7 +351,7 @@ c_compute_program (struct compile_instance *inst,
|
||||
" __gdb_intptr;\n",
|
||||
buf);
|
||||
|
||||
// Iterate all log2 sizes in bytes supported by c_get_mode_for_size.
|
||||
/* Iterate all log2 sizes in bytes supported by c_get_mode_for_size. */
|
||||
for (i = 0; i < 4; ++i)
|
||||
{
|
||||
const char *mode = c_get_mode_for_size (1 << i);
|
||||
|
@ -67,7 +67,7 @@ setup_sections (bfd *abfd, asection *sect, void *data_voidp)
|
||||
if ((bfd_get_section_flags (abfd, sect) & SEC_ALLOC) == 0)
|
||||
return;
|
||||
|
||||
// Make the memory always readable.
|
||||
/* Make the memory always readable. */
|
||||
prot = GDB_MMAP_PROT_READ;
|
||||
if ((bfd_get_section_flags (abfd, sect) & SEC_READONLY) == 0)
|
||||
prot |= GDB_MMAP_PROT_WRITE;
|
||||
|
Reference in New Issue
Block a user