diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1993-03-25 08:51:26 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1993-03-25 08:51:26 +0000 |
commit | d0d4af87cc5db924b337c8076cae91c65d19291c (patch) | |
tree | cfdc93c4bf9c6428d1d2d5f186799cfecb06737b /gcc/defaults.h | |
parent | d1e37dc7e8bee5ba20eb7c04148a9e6cf379d946 (diff) | |
download | gcc-d0d4af87cc5db924b337c8076cae91c65d19291c.zip gcc-d0d4af87cc5db924b337c8076cae91c65d19291c.tar.gz gcc-d0d4af87cc5db924b337c8076cae91c65d19291c.tar.bz2 |
Added front-end taggint to object files.
From-SVN: r3874
Diffstat (limited to 'gcc/defaults.h')
-rw-r--r-- | gcc/defaults.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/defaults.h b/gcc/defaults.h index e943fa6..7234206 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -108,3 +108,13 @@ do { fprintf (FILE, "\t%s\t", ASM_SHORT); \ } \ while (0) #endif + +#ifndef ASM_IDENTIFY_GCC + /* Default the definition, only if ASM_IDENTIFY_GCC is not set, + because if it is set, we might not want ASM_IDENTIFY_LANGUAGE + outputting labels, if we do want it to, then it must be defined + in the tm.h file. */ +#ifndef ASM_IDENTIFY_LANGUAGE +#define ASM_IDENTIFY_LANGUAGE(FILE) output_lang_identify (FILE); +#endif +#endif |