diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-06-16 21:41:10 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-06-16 21:41:10 +0000 |
commit | fad205ffba97267072c69704481aac372dd62f16 (patch) | |
tree | 5aa9e7cef82d21751e0893c56bdaeadef5722525 /gcc/dwarfout.c | |
parent | 4ff58371763d8dfb211e776e22e74a51fa3eb909 (diff) | |
download | gcc-fad205ffba97267072c69704481aac372dd62f16.zip gcc-fad205ffba97267072c69704481aac372dd62f16.tar.gz gcc-fad205ffba97267072c69704481aac372dd62f16.tar.bz2 |
decl.c, [...]: Don't use the PTR macro.
cp:
* cp/decl.c, cp/pt.c, cp/search.c, cp/tree.c: Don't use the PTR
macro.
gcc:
* bitmap.c, builtins.c, c-incpath.c, cgraph.c, config/frv/frv.c,
config/mips/mips.c, cppfiles.c, cpphash.c, cppinit.c, cpplib.c,
dwarf2out.c, dwarfout.c, except.c, expr.c, expr.h, fold-const.c,
function.c, gcc.c, genoutput.c, gensupport.c, global.c,
haifa-sched.c, hashtable.c, ifcvt.c, integrate.c, local-alloc.c,
loop.c, mips-tdump.c, mips-tfile.c, mkdeps.c, protoize.c,
read-rtl.c, recog.h, reload1.c, sbitmap.c, ssa-dce.c,
stringpool.c, tlink.c, tree.c, varasm.c, varray.c: Don't use
the PTR macro.
From-SVN: r68043
Diffstat (limited to 'gcc/dwarfout.c')
-rw-r--r-- | gcc/dwarfout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index efc734e..6210ab9 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -6367,7 +6367,7 @@ dwarfout_init (main_input_filename) fputc ('\n', asm_out_file); ASM_OUTPUT_PUSH_SECTION (asm_out_file, DEBUG_SECTION); ASM_OUTPUT_LABEL (asm_out_file, DEBUG_BEGIN_LABEL); - output_die (output_compile_unit_die, (PTR) main_input_filename); + output_die (output_compile_unit_die, (void *) main_input_filename); ASM_OUTPUT_POP_SECTION (asm_out_file); fputc ('\n', asm_out_file); |