diff options
author | Tom Wood <wood@gnu.org> | 1992-02-12 18:03:00 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1992-02-12 18:03:00 +0000 |
commit | ad4c6463d311787d8d51ee46f6c8cdea0e3e9803 (patch) | |
tree | 381420a7aa5438061826e312b167fc7e6e074d39 | |
parent | 1d7fac3a9b99c21ad50cd9c7e204dca0bb9c18f4 (diff) | |
download | gcc-ad4c6463d311787d8d51ee46f6c8cdea0e3e9803.zip gcc-ad4c6463d311787d8d51ee46f6c8cdea0e3e9803.tar.gz gcc-ad4c6463d311787d8d51ee46f6c8cdea0e3e9803.tar.bz2 |
*** empty log message ***
From-SVN: r312
-rw-r--r-- | gcc/config/m88k/m88k.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/gcc/config/m88k/m88k.h b/gcc/config/m88k/m88k.h index fb28582..1a4d29f 100644 --- a/gcc/config/m88k/m88k.h +++ b/gcc/config/m88k/m88k.h @@ -202,9 +202,9 @@ extern char * reg_names[]; /* Print subsidiary information on the compiler version in use. Redefined in m88kv4.h, and m88kluna.h. */ #define VERSION_INFO1 "88open OCS/BCS, " -#define VERSION_INFO2 "03 Feb 1992" +#define VERSION_INFO2 "12 Feb 1992" #define VERSION_STRING version_string -#define TM_SCCS_ID "@(#)m88k.h 1.96.5.3 03 Feb 1992 09:39:25" +#define TM_SCCS_ID "@(#)m88k.h 1.96.5.5 12 Feb 1992 12:59:25" /* Run-time compilation parameters selecting different hardware subsets. */ @@ -384,8 +384,9 @@ extern char * reg_names[]; /* Boundary (in *bits*) on which stack pointer should be aligned. */ #define STACK_BOUNDARY 128 -/* Allocation boundary (in *bits*) for the code of a function. */ -#define FUNCTION_BOUNDARY 128 +/* Allocation boundary (in *bits*) for the code of a function. + Pack code tightly when compiling crtstuff.c. */ +#define FUNCTION_BOUNDARY (flag_inhibit_size_directive ? 32 : 128) /* No data type wants to be aligned rounder than this. */ #define BIGGEST_ALIGNMENT 64 @@ -1806,8 +1807,9 @@ enum reg_class { NO_REGS, AP_REG, GENERAL_REGS, ALL_REGS, LIM_REG_CLASSES }; fprintf (FILE, "%s\t %d\n", ALIGN_ASM_OP, 1<<(LOG)) /* Align the text address to half a cache boundary when it can only be - reached by jumping. */ -#define ASM_OUTPUT_ALIGN_CODE(FILE) ASM_OUTPUT_ALIGN (FILE, 3) + reached by jumping. Pack code tightly when compiling crtstuff.c. */ +#define ASM_OUTPUT_ALIGN_CODE(FILE) \ + ASM_OUTPUT_ALIGN (FILE, (flag_inhibit_size_directive ? 2 : 3)) /* Override svr[34].h. */ #undef ASM_OUTPUT_SKIP |