summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/darwin-longlong.c
blob: 0692b3d80699895b25ac364b87b5a01777defcfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do run { target powerpc*-*-* } } */
/* { dg-require-effective-target powerpc64 } */
/* { dg-options "-mcpu=G5" } */

#include <stdlib.h>

int  msw(long long in)
{
  union {
    long long ll;
    int  i[2];
  } ud;
  ud.ll = in;
  return ud.i[0];
}

int main()
{
  if (msw(1) != 0)
    abort();
  exit(0);
}