aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/tic6x/rotdi16-scan.c
blob: 4d7816c15373152b057993091550c8f485b46a59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-require-effective-target ti_c64xp } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler "dpackx" } } */

#include <stdlib.h>

unsigned long long z = 0x012389ab4567cdefull;

int main ()
{
  unsigned long long z2 = (z << 48) | (z >> 16);
  if (z2 != 0xcdef012389ab4567ull)
    abort ();
  exit (0);
}