aboutsummaryrefslogtreecommitdiff
path: root/gcc/final.c
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2011-07-09 13:18:32 -0700
committerRichard Henderson <rth@gcc.gnu.org>2011-07-09 13:18:32 -0700
commitded49a7f6c1027557819ec66d8d8d258f575add3 (patch)
tree46f5b9e96153860f2351a71bb767362038a0ca94 /gcc/final.c
parent45fba6d114d3ce2ed6192b24e93eba79231cdee5 (diff)
downloadgcc-ded49a7f6c1027557819ec66d8d8d258f575add3.zip
gcc-ded49a7f6c1027557819ec66d8d8d258f575add3.tar.gz
gcc-ded49a7f6c1027557819ec66d8d8d258f575add3.tar.bz2
Move ASM_COMMENT_START to defaults.h.
Note the extreme silliness in dwarf2out.c with 3 (three) copies. * defaults.h (ASM_COMMENT_START): Move here... * dwarf2asm.c: ... from here. * dwarf2out.c, final.c, vmsdbgout.c: Remove duplicates. * toplev.c: Remove ifndef tests of ASM_COMMENT_START. * varasm.c: Likewise. From-SVN: r176093
Diffstat (limited to 'gcc/final.c')
-rw-r--r--gcc/final.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 483a645..3416955 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -106,11 +106,6 @@ along with GCC; see the file COPYING3. If not see
#define CC_STATUS_INIT
#endif
-/* How to start an assembler comment. */
-#ifndef ASM_COMMENT_START
-#define ASM_COMMENT_START ";#"
-#endif
-
/* Is the given character a logical line separator for the assembler? */
#ifndef IS_ASM_LOGICAL_LINE_SEPARATOR
#define IS_ASM_LOGICAL_LINE_SEPARATOR(C, STR) ((C) == ';')