aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Stallman <rms@gnu.org>1992-07-27 03:11:22 +0000
committerRichard Stallman <rms@gnu.org>1992-07-27 03:11:22 +0000
commit65e15c1b208edf5addad113bad65fffd3269fcb0 (patch)
tree485afc3d2411b447360022a5030d40b520ee624b
parent0a2e51a941cbc5ecbb5e839f685c5f1bac7d075a (diff)
downloadgcc-65e15c1b208edf5addad113bad65fffd3269fcb0.zip
gcc-65e15c1b208edf5addad113bad65fffd3269fcb0.tar.gz
gcc-65e15c1b208edf5addad113bad65fffd3269fcb0.tar.bz2
*** empty log message ***
From-SVN: r1689
-rw-r--r--gcc/final.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/final.c b/gcc/final.c
index 1e6affde..e44f77c 100644
--- a/gcc/final.c
+++ b/gcc/final.c
@@ -1141,12 +1141,14 @@ final_scan_insn (insn, file, optimize, prescan, nopeepholes)
{
#ifndef JUMP_TABLES_IN_TEXT_SECTION
readonly_data_section ();
+#ifdef READONLY_DATA_SECTION
ASM_OUTPUT_ALIGN (file,
exact_log2 (BIGGEST_ALIGNMENT
/ BITS_PER_UNIT));
-#else
+#endif /* READONLY_DATA_SECTION */
+#else /* JUMP_TABLES_IN_TEXT_SECTION */
text_section ();
-#endif
+#endif /* JUMP_TABLES_IN_TEXT_SECTION */
#ifdef ASM_OUTPUT_CASE_LABEL
ASM_OUTPUT_CASE_LABEL (file, "L", CODE_LABEL_NUMBER (insn),
NEXT_INSN (insn));