comparison gcc/testsuite/gcc.target/powerpc/cfuged-1.c @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents
children
comparison
equal deleted inserted replaced
145:1830386684a0 152:2b5abeee2509
1 /* { dg-do run } */
2 /* { dg-require-effective-target lp64 } */
3 /* { dg-require-effective-target powerpc_future_hw } */
4 /* { dg-options "-mdejagnu-cpu=future" } */
5
6 extern void abort (void);
7
8 unsigned long long int
9 do_cfuged (unsigned long long int source, unsigned long long int mask)
10 {
11 return __builtin_cfuged (source, mask);
12 }
13
14 int main (int argc, char *argv [])
15 {
16 unsigned long long int sources [4], masks [4];
17 unsigned long long int results [4][4] = {
18 /* sources[0] with each of masks [0 .. 3] */
19 {0x7e3ca5f0ll, 0xa5f07e3cll, 0xaf7350ecll, 0x50ecaf73ll },
20 /* sources[1] with each of masks [0 .. 3] */
21 { 0xa5f07e3cll, 0x7e3ca5f0ll, 0x73afec50ll, 0xec5073afll },
22 /* sources[2] with each of masks [0 .. 3] */
23 { 0xf07e3ca5ll, 0x3ca5f07ell, 0x3af7c50ell, 0xc50e3af7ll },
24 /* sources[3] with each of masks [0 .. 3] */
25 { 0xe7c35a0fll, 0x5a0fe7c3ll, 0x50ecaf73ll, 0xaf7350ecll },
26 };
27
28 sources[0] = 0xa5f07e3cll;
29 sources[1] = 0x7e3ca5f0ll;
30 sources[2] = 0x3ca5f07ell;
31 sources[3] = 0x5a0fe7c3ll;
32
33 masks[0] = 0xffff0000ll;
34 masks[1] = 0x0000ffffll;
35 masks[2] = 0x0f0f0f0fll;
36 masks[3] = 0xf0f0f0f0ll;
37
38 unsigned long long int result;
39
40 for (int i = 0; i < 4; i++)
41 {
42 for (int j = 0; j < 4; j++)
43 {
44 if (do_cfuged (sources[i], masks[j]) != results [i][j])
45 abort ();
46 }
47 }
48
49 return 0;
50 }