OSDN Git Service

* config/rs6000/aix.h (MD_FROB_UPDATE_CONTEXT): Use __64BIT__ to
authordje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 11 Sep 2004 17:06:16 +0000 (17:06 +0000)
committerdje <dje@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 11 Sep 2004 17:06:16 +0000 (17:06 +0000)
        choose 64-bit version.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87352 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/config/rs6000/aix.h

index 2e4b04a..35a3679 100644 (file)
@@ -1,3 +1,8 @@
+2004-09-11  David Edelsohn  <edelsohn@gnu.org>
+
+       * config/rs6000/aix.h (MD_FROB_UPDATE_CONTEXT): Use __64BIT__ to
+       choose 64-bit version.
+
 2004-09-11  Richard Henderson  <rth@redhat.com>
 
        PR c/17396
index 38196d7..cb674c8 100644 (file)
    code that does the save/restore is generated by the linker, so
    we have no good way to determine at compile time what to do.  */
 
-#ifdef __powerpc64__
+#ifdef __64BIT__
 #define MD_FROB_UPDATE_CONTEXT(CTX, FS)                                        \
   do {                                                                 \
     if ((FS)->regs.reg[2].how == REG_UNSAVED)                          \