diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1992-05-22 09:15:04 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1992-05-22 09:15:04 -0700 |
commit | 32686e406baa9662e8cd5c467696eb8bb8b200ce (patch) | |
tree | 25ac8ad4093b70df01542eb4a41ebdc8a0d2f1ca /gcc | |
parent | 3a0d22dd0c51c8cf92811f2cd0c59035e4aab9ce (diff) | |
download | gcc-32686e406baa9662e8cd5c467696eb8bb8b200ce.zip gcc-32686e406baa9662e8cd5c467696eb8bb8b200ce.tar.gz gcc-32686e406baa9662e8cd5c467696eb8bb8b200ce.tar.bz2 |
*** empty log message ***
From-SVN: r1048
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/sparc/sysv4.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/sparc/sysv4.h b/gcc/config/sparc/sysv4.h index 9aaed92..7517c3d 100644 --- a/gcc/config/sparc/sysv4.h +++ b/gcc/config/sparc/sysv4.h @@ -100,6 +100,12 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define PUSHSECTION_FORMAT "\t%s\t\"%s\"\n" +#undef ASM_OUTPUT_CASE_LABEL +#define ASM_OUTPUT_CASE_LABEL(FILE, PREFIX, NUM, JUMPTABLE) \ +do { ASM_OUTPUT_ALIGN ((FILE), 2); \ + ASM_OUTPUT_INTERNAL_LABEL ((FILE), PREFIX, NUM); \ + } while (0) + /* This is how to equate one symbol to another symbol. The syntax used is `SYM1=SYM2'. Note that this is different from the way equates are done with most svr4 assemblers, where the syntax is `.set SYM1,SYM2'. */ |