This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH, committed] Disable 64-bit on AIX 4.[12]


	c-common.c refers to some macros that want TARGET_64BIT defined.
This patch defines the macro as zero for AIX 4.1 and AIX 4.2 to allow
bootstrap. 

David

	PR target/26545
	* config/rs6000/aix41.h (TARGET_64BIT): Define.

Index: aix41.h
===================================================================
--- aix41.h	(revision 113642)
+++ aix41.h	(working copy)
@@ -91,3 +91,6 @@
    .set directives.  We handle this by deferring the output of .set
    directives to the end of the compilation unit.  */
 #define TARGET_DEFERRED_OUTPUT_DEFS(DECL,TARGET) true
+
+#undef TARGET_64BIT
+#define TARGET_64BIT 0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]