From 98577d038cb1781b3d3ff5050a279a1aae9cb592 Mon Sep 17 00:00:00 2001 From: Jeffrey A Law Date: Tue, 25 May 1999 21:32:01 +0000 Subject: output.h (STRIP_NAME_ENCODING): Provide default definition. * output.h (STRIP_NAME_ENCODING): Provide default definition. * dwarf2out.c (ASM_NAME_TO_STRING): Use STRIP_NAME_ENCODING. From-SVN: r27151 --- gcc/output.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'gcc/output.h') diff --git a/gcc/output.h b/gcc/output.h index e1cf6d8..9456ed8 100644 --- a/gcc/output.h +++ b/gcc/output.h @@ -505,3 +505,9 @@ extern FILE *rtl_dump_file; /* User label prefix in effect for this compilation. */ extern const char *user_label_prefix; + +/* Define a default version of STRIP_NAME_ENCODING so that we can use + it without a mess of #ifdefs. */ +#ifndef STRIP_NAME_ENCODING +#define STRIP_NAME_ENCODING(TARGET,SOURCE) (TARGET = SOURCE) +#endif -- cgit v1.1