Use conditional internal functions in if-conversion
[official-gcc.git] / gcc / testsuite / gcc.target / tic6x / rotdi16-scan.c
blob4d7816c15373152b057993091550c8f485b46a59
1 /* { dg-do compile } */
2 /* { dg-require-effective-target ti_c64xp } */
3 /* { dg-options "-O2" } */
4 /* { dg-final { scan-assembler "dpackx" } } */
6 #include <stdlib.h>
8 unsigned long long z = 0x012389ab4567cdefull;
10 int main ()
12 unsigned long long z2 = (z << 48) | (z >> 16);
13 if (z2 != 0xcdef012389ab4567ull)
14 abort ();
15 exit (0);