This is the mail archive of the gcc-bugs@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]

[Bug testsuite/29071] gcc.dg/20020919-1.c compilation test fails on powerpc-apple-darwin8 at -m64



------- Comment #4 from janis at gcc dot gnu dot org  2008-05-20 21:45 -------
Isn't the proposal in comment #3 the same as this?

Index: gcc/testsuite/gcc.dg/20020919-1.c
===================================================================
--- gcc/testsuite/gcc.dg/20020919-1.c   (revision 135322)
+++ gcc/testsuite/gcc.dg/20020919-1.c   (working copy)
@@ -41,7 +41,7 @@ 
        || defined (__POWERPC__) || defined (PPC) || defined (_IBMR2)
 # define REG1 "6"
 # define REG2 "7"
-# ifndef __powerpc64__
+# if !defined(__powerpc64__) && !defined(__LP64__)
 #  define REG3 "8"
 #  define REG4 "9"
 # endif

We already know that this part is true:

    defined (__powerpc__) || defined (__PPC__) || defined (__ppc__) \
    || defined (__POWERPC__) || defined (PPC) || defined (_IBMR2)


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29071


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