mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-12 22:14:18 +08:00
varasm.c (assemble_gc_entry): Remove.
* varasm.c (assemble_gc_entry): Remove. * output.h: Likewise. From-SVN: r44680
This commit is contained in:
parent
fe413112f8
commit
2d2e44d250
@ -1,3 +1,8 @@
|
||||
2001-08-06 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* varasm.c (assemble_gc_entry): Remove.
|
||||
* output.h: Likewise.
|
||||
|
||||
2001-08-06 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* varasm.c (assemble_constructor): Take a symbol_ref and a
|
||||
|
@ -266,10 +266,6 @@ extern void assemble_destructor PARAMS ((rtx, int));
|
||||
extern void assemble_constructor PARAMS ((rtx, int));
|
||||
#endif
|
||||
|
||||
/* Likewise for entries we want to record for garbage collection.
|
||||
Garbage collection is still under development. */
|
||||
extern void assemble_gc_entry PARAMS ((const char *));
|
||||
|
||||
/* Assemble code to leave SIZE bytes of zeros. */
|
||||
extern void assemble_zeros PARAMS ((int));
|
||||
|
||||
|
20
gcc/varasm.c
20
gcc/varasm.c
@ -895,26 +895,6 @@ assemble_constructor (symbol, priority)
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/* Likewise for entries we want to record for garbage collection.
|
||||
Garbage collection is still under development. */
|
||||
|
||||
void
|
||||
assemble_gc_entry (name)
|
||||
const char *name;
|
||||
{
|
||||
#ifdef ASM_OUTPUT_GC_ENTRY
|
||||
ASM_OUTPUT_GC_ENTRY (asm_out_file, name);
|
||||
#else
|
||||
if (flag_gnu_linker)
|
||||
{
|
||||
/* Now tell GNU LD that this is part of the static constructor set. */
|
||||
fprintf (asm_out_file, "%s\"___PTR_LIST__\",22,0,0,", ASM_STABS_OP);
|
||||
assemble_name (asm_out_file, name);
|
||||
fputc ('\n', asm_out_file);
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/* CONSTANT_POOL_BEFORE_FUNCTION may be defined as an expression with
|
||||
a non-zero value if the constant pool should be output before the
|
||||
|
Loading…
Reference in New Issue
Block a user