mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 16:51:13 +08:00
Test case for PR middle-end/13779.
From-SVN: r76652
This commit is contained in:
parent
6c8066b9ca
commit
b2037eac29
34
gcc/testsuite/gcc.dg/darwin-longlong.c
Normal file
34
gcc/testsuite/gcc.dg/darwin-longlong.c
Normal file
@ -0,0 +1,34 @@
|
||||
/* { dg-do run { target powerpc*-*-* } } */
|
||||
/* { dg-options "-mcpu=G5" } */
|
||||
|
||||
#include <signal.h>
|
||||
|
||||
void
|
||||
sig_ill_handler (int sig)
|
||||
{
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
||||
int msw(long long in)
|
||||
{
|
||||
union {
|
||||
long long ll;
|
||||
int i[2];
|
||||
} ud;
|
||||
ud.ll = in;
|
||||
return ud.i[0];
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
/* Exit on systems without 64bit instructions. */
|
||||
signal (SIGILL, sig_ill_handler);
|
||||
asm volatile ("extsw r0,r0");
|
||||
signal (SIGILL, SIG_DFL);
|
||||
|
||||
if (msw(1) != 0)
|
||||
abort();
|
||||
exit(0);
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user