diff options
author | David S. Miller <davem@davemloft.net> | 2011-11-12 01:05:07 +0000 |
---|---|---|
committer | David S. Miller <davem@gcc.gnu.org> | 2011-11-11 17:05:07 -0800 |
commit | 49db0ca8f69e3a01f38c177d424f89afb056755b (patch) | |
tree | c14eeddef32b6c4c5bbfe37e61d5a0146e5a31bc /gcc/config | |
parent | daf6d24fd0fca1eb1131ab1facfda48628bce6a3 (diff) | |
download | gcc-49db0ca8f69e3a01f38c177d424f89afb056755b.tar.gz |
Fix Linux/sparc build after generic asm output optimizations.
* config/sparc/linux.h (ASM_GENERATE_INTERNAL_LABEL): Delete.
* config/sparc/linux64.h (ASM_GENERATE_INTERNAL_LABEL): Delete.
From-SVN: r181307
Diffstat (limited to 'gcc/config')
-rw-r--r-- | gcc/config/sparc/linux.h | 9 | ||||
-rw-r--r-- | gcc/config/sparc/linux64.h | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/gcc/config/sparc/linux.h b/gcc/config/sparc/linux.h index 443c7966405..60dc86976e3 100644 --- a/gcc/config/sparc/linux.h +++ b/gcc/config/sparc/linux.h @@ -118,15 +118,6 @@ do { \ #undef LOCAL_LABEL_PREFIX #define LOCAL_LABEL_PREFIX "." -/* This is how to store into the string LABEL - the symbol_ref name of an internal numbered label where - PREFIX is the class of label and NUM is the number within the class. - This is suitable for output with `assemble_name'. */ - -#undef ASM_GENERATE_INTERNAL_LABEL -#define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \ - sprintf (LABEL, "*.L%s%ld", PREFIX, (long)(NUM)) - /* Define for support of TFmode long double. SPARC ABI says that long double is 4 words. */ diff --git a/gcc/config/sparc/linux64.h b/gcc/config/sparc/linux64.h index bec279de8c9..14966b97fc3 100644 --- a/gcc/config/sparc/linux64.h +++ b/gcc/config/sparc/linux64.h @@ -236,15 +236,6 @@ do { \ #undef LOCAL_LABEL_PREFIX #define LOCAL_LABEL_PREFIX "." -/* This is how to store into the string LABEL - the symbol_ref name of an internal numbered label where - PREFIX is the class of label and NUM is the number within the class. - This is suitable for output with `assemble_name'. */ - -#undef ASM_GENERATE_INTERNAL_LABEL -#define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \ - sprintf (LABEL, "*.L%s%ld", PREFIX, (long)(NUM)) - /* DWARF bits. */ /* Follow Irix 6 and not the Dwarf2 draft in using 64-bit offsets. |