1 /* PR target/106708 */
2 /* { dg-do run } */
3 /* { dg-options "-O2 -mno-prefixed -save-temps" } */
4 /* { dg-require-effective-target has_arch_ppc64 } */
5
6 long long arr[]
7 = {0xffffffff7cdeab55LL, 0x98765432LL, 0xabcd0000LL};
8
9 void __attribute__ ((__noipa__)) test_li_xoris (long long *arg)
10 {
11 *arg = 0xffffffff7cdeab55LL;
12 }
13 /* { dg-final { scan-assembler-times {\mli .*,-21675\M} 1 } } */
14 /* { dg-final { scan-assembler-times {\mxoris .*0x8321\M} 1 } } */
15
16 void __attribute__ ((__noipa__)) test_li_oris (long long *arg)
17 {
18 *arg = 0x98765432LL;
19 }
20 /* { dg-final { scan-assembler-times {\mli .*,21554\M} 1 } } */
21 /* { dg-final { scan-assembler-times {\moris .*0x9876\M} 1 } } */
22
23 void __attribute__ ((__noipa__)) test_lis_rldicl (long long *arg)
24 {
25 *arg = 0xabcd0000LL;
26 }
27 /* { dg-final { scan-assembler-times {\mlis .*,0xabcd\M} 1 } } */
28 /* { dg-final { scan-assembler-times {\mrldicl .*,0,32\M} 1 } } */
29
30 int
31 main ()
32 {
33 long long a[sizeof (arr) / sizeof (arr[0])];
34
35 test_li_xoris (a);
36 test_li_oris (a + 1);
37 test_lis_rldicl (a + 2);
38 if (__builtin_memcmp (a, arr, sizeof (arr)) != 0)
39 __builtin_abort ();
40 return 0;
41 }