summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-15 10:29:27 +0000
committerbernie <bernie@138bc75d-0d04-0410-961f-82ee72b054a4>2003-10-15 10:29:27 +0000
commit3ceea1c00549d948d5496b82bc3fce61eb8dd7d9 (patch)
treeada795a013320b7b228f52ed7e3699b60290b68f
parent170f5a00dc469cc7dd8c8de497f07efca4e29610 (diff)
downloadppe42-gcc-3ceea1c00549d948d5496b82bc3fce61eb8dd7d9.tar.gz
ppe42-gcc-3ceea1c00549d948d5496b82bc3fce61eb8dd7d9.zip
* config/m68k/m68k.h (MASK_SEP_DATA, TARGET_SEP_DATA,
MASK_ID_SHARED_LIBRARY, TARGET_ID_SHARED_LIBRARY): Move definitions after the other flags. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72516 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/config/m68k/m68k.h26
2 files changed, 19 insertions, 13 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ea890d31753..55da6eeda59 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2003-10-15 Bernardo Innocenti <bernie@develer.com>
+
+ * config/m68k/m68k.h (MASK_SEP_DATA, TARGET_SEP_DATA,
+ MASK_ID_SHARED_LIBRARY, TARGET_ID_SHARED_LIBRARY): Move
+ definitions after the other flags.
+
2003-10-14 Ziemowit Laski <zlaski@apple.com>
* c-parse.in (methoddef, methodproto): Call objc_add_method()
diff --git a/gcc/config/m68k/m68k.h b/gcc/config/m68k/m68k.h
index e40492f2519..d1f4243a2d2 100644
--- a/gcc/config/m68k/m68k.h
+++ b/gcc/config/m68k/m68k.h
@@ -93,19 +93,6 @@ Boston, MA 02111-1307, USA. */
} \
while (0)
-/* Support A5 relative data seperate from text.
- * This option implies -fPIC, however it inhibits the generation of the
- * A5 save/restore in functions and the loading of a5 with a got pointer.
- */
-#define MASK_SEP_DATA 0x100000
-#define TARGET_SEP_DATA (target_flags & MASK_SEP_DATA)
-
-/* Compile using library ID based shared libraries.
- * Set a specific ID using the -mshared-library-id=xxx option.
- */
-#define MASK_ID_SHARED_LIBRARY 0x200000
-#define TARGET_ID_SHARED_LIBRARY (target_flags & MASK_ID_SHARED_LIBRARY)
-
/* Classify the groups of pseudo-ops used to assemble QI, HI and SI
quantities. */
#define INT_OP_STANDARD 0 /* .byte, .short, .long */
@@ -221,6 +208,19 @@ extern int target_flags;
#define MASK_RTD (1<<16)
#define TARGET_RTD (target_flags & MASK_RTD)
+/* Support A5 relative data seperate from text.
+ * This option implies -fPIC, however it inhibits the generation of the
+ * A5 save/restore in functions and the loading of a5 with a got pointer.
+ */
+#define MASK_SEP_DATA (1<<17)
+#define TARGET_SEP_DATA (target_flags & MASK_SEP_DATA)
+
+/* Compile using library ID based shared libraries.
+ * Set a specific ID using the -mshared-library-id=xxx option.
+ */
+#define MASK_ID_SHARED_LIBRARY (1<<18)
+#define TARGET_ID_SHARED_LIBRARY (target_flags & MASK_ID_SHARED_LIBRARY)
+
/* Compile for a CPU32. A 68020 without bitfields is a good
heuristic for a CPU32. */
#define TARGET_CPU32 (TARGET_68020 && !TARGET_BITFIELD)
OpenPOWER on IntegriCloud