diff options
author | Richard Stallman <rms@gnu.org> | 1993-02-27 19:08:05 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-02-27 19:08:05 +0000 |
commit | cacb38243ebe742e49bbc89ce2320733b44a4fc0 (patch) | |
tree | d7c666c0d68eb271781d71f525a4bd7553191294 /gcc | |
parent | d3c64ee3f322bedd7e692b6a767be7ef424f337c (diff) | |
download | gcc-cacb38243ebe742e49bbc89ce2320733b44a4fc0.zip gcc-cacb38243ebe742e49bbc89ce2320733b44a4fc0.tar.gz gcc-cacb38243ebe742e49bbc89ce2320733b44a4fc0.tar.bz2 |
(TARGET_SWITCHES): Reverse defn of 32332.
(ASM_OUTPUT_ALIGN_CODE): Pad with no-op insns.
From-SVN: r3554
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/ns32k/ns32k.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/config/ns32k/ns32k.h b/gcc/config/ns32k/ns32k.h index 24de90f..0aca249 100644 --- a/gcc/config/ns32k/ns32k.h +++ b/gcc/config/ns32k/ns32k.h @@ -96,8 +96,8 @@ extern int target_flags; { "regparm", 4}, \ { "noregparm", -4}, \ { "32532", 24}, \ - { "32332", -16}, \ - { "32332", 8}, \ + { "32332", -8}, \ + { "32332", 16}, \ { "32032", -24}, \ { "sb", -32}, \ { "nosb", 32}, \ @@ -1255,10 +1255,11 @@ do { \ #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \ sprintf (LABEL, "*%s%d", PREFIX, NUM) -/* This is how to align the code that follows an unconditional branch. */ +/* This is how to align the code that follows an unconditional branch. + Note that 0xa2 is a no-op. */ #define ASM_OUTPUT_ALIGN_CODE(FILE) \ - fprintf (FILE, "\t.align 2\n") + fprintf (FILE, "\t.align 2,0xa2\n") /* This is how to output an element of a case-vector that is absolute. (The ns32k does not use such vectors, |