diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-02-19 11:14:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-02-19 11:14:12 +0000 |
commit | a5ee8d80039714dccb0ec9881a6840d8f7d948ff (patch) | |
tree | 76de77c0a7802d190b969ec1589184ed45a8a6eb /gcc/config | |
parent | 45ea6431a0b913a00fbf28685824993e73c81756 (diff) | |
download | gcc-a5ee8d80039714dccb0ec9881a6840d8f7d948ff.zip gcc-a5ee8d80039714dccb0ec9881a6840d8f7d948ff.tar.gz gcc-a5ee8d80039714dccb0ec9881a6840d8f7d948ff.tar.bz2 |
* config/mcore/mcore.h (ASM_OUTPUT_EXTERNAL): Remove.
From-SVN: r78094
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/mcore/mcore.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/config/mcore/mcore.h b/gcc/config/mcore/mcore.h index 6955829..a344a28 100644 --- a/gcc/config/mcore/mcore.h +++ b/gcc/config/mcore/mcore.h @@ -1128,25 +1128,6 @@ extern long mcore_current_compilation_timestamp; while (0) /* This says how to output an assembler line - to define an external symbol. */ -#define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \ - do \ - { \ - fputs ("\t.import\t", (FILE)); \ - assemble_name ((FILE), (NAME)); \ - fputs ("\n", (FILE)); \ - } \ - while (0) - -#undef ASM_OUTPUT_EXTERNAL -/* RBE: we undefined this and let gas do it's "undefined is imported" - games. This is because when we use this, we get a marked - reference through the call to assemble_name and this forces C++ - inlined member functions (or any inlined function) to be instantiated - regardless of whether any call sites remain. - This makes this aspect of the compiler non-ABI compliant. */ - -/* This says how to output an assembler line to define a local common symbol.... */ #undef ASM_OUTPUT_LOCAL #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \ |