OSDN Git Service

* lib/target-supports.exp (check_effective_target_powerpc64): New.
authorfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Jan 2009 03:05:10 +0000 (03:05 +0000)
committerfroydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 13 Jan 2009 03:05:10 +0000 (03:05 +0000)
* gcc.target/powerpc/darwin-longlong.c: Explicitly require 64-bit
instruction support.  Do not check for it at runtime.

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

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/powerpc/darwin-longlong.c

index 513f6bc..d2e0d59 100644 (file)
@@ -1,3 +1,9 @@
+2009-01-12  Daniel Jacobowitz  <dan@codesourcery.com>
+
+       * lib/target-supports.exp (check_effective_target_powerpc64): New.
+       * gcc.target/powerpc/darwin-longlong.c: Explicitly require 64-bit
+       instruction support.  Do not check for it at runtime.
+
 2009-01-12  Jason Merrill  <jason@redhat.com>
 
        PR c++/35109
 2009-01-12  Jason Merrill  <jason@redhat.com>
 
        PR c++/35109
index 866fb6c..0692b3d 100644 (file)
@@ -1,17 +1,9 @@
 /* { dg-do run { target powerpc*-*-* } } */
 /* { dg-do run { target powerpc*-*-* } } */
-/* { dg-xfail-if "" { "powerpc-*-eabispe*" "powerpc-ibm-aix*" } { "*" } { "" } } */
+/* { dg-require-effective-target powerpc64 } */
 /* { dg-options "-mcpu=G5" } */
 
 /* { dg-options "-mcpu=G5" } */
 
-#include <signal.h>
 #include <stdlib.h>
 
 #include <stdlib.h>
 
-void
-sig_ill_handler (int sig)
-{
-    exit(0);
-}
-
-
 int  msw(long long in)
 {
   union {
 int  msw(long long in)
 {
   union {
@@ -24,16 +16,6 @@ int  msw(long long in)
 
 int main()
 {
 
 int main()
 {
-
-  /* Exit on systems without 64bit instructions.  */
-  signal (SIGILL, sig_ill_handler);
-#ifdef __MACH__
-  asm volatile ("extsw r0,r0");
-#else
-  asm volatile ("extsw 0,0");
-#endif
-  signal (SIGILL, SIG_DFL);
-
   if (msw(1) != 0)
     abort();
   exit(0);
   if (msw(1) != 0)
     abort();
   exit(0);