Commit 81d77cda by Richard Kenner

(ASM_OUTPUT_LABELREF): Provide default definition if not already defined.

From-SVN: r12749
parent 70d65f3b
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
Copyright (C) 1992, 1996 Free Software Foundation, Inc. Copyright (C) 1992, 1996 Free Software Foundation, Inc.
Contributed by Ron Guilmette (rfg@monkeys.com) Contributed by Ron Guilmette (rfg@monkeys.com)
This file is part of GNU CC. This file is part of GNU CC.
GNU CC is free software; you can redistribute it and/or modify GNU CC is free software; you can redistribute it and/or modify
...@@ -119,6 +118,13 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG); \ ...@@ -119,6 +118,13 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG); \
#endif #endif
#endif #endif
/* This is how to output a reference to a user-level label named NAME. */
#ifndef ASM_OUTPUT_LABELREF
#define ASM_OUTPUT_LABELREF(FILE,NAME) \
do { fputs (USER_LABEL_PREFIX, FILE); fputs (NAME, FILE); } while (0)
#endif
/* This determines whether or not we support weak symbols. */ /* This determines whether or not we support weak symbols. */
#ifndef SUPPORTS_WEAK #ifndef SUPPORTS_WEAK
#ifdef ASM_WEAKEN_LABEL #ifdef ASM_WEAKEN_LABEL
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment