2 /* { dg-require-effective-target sync_char_short } */
3 /* { dg-options "-march=i486" { target { { i?86-*-* x86_64-*-* } && ilp32 } } } */
5 /* Test functionality of the intrinsics for 'short' and 'char'. */
7 extern void abort (void);
8 extern void *memcpy (void *, const void *, __SIZE_TYPE__
);
11 static char init_qi
[18] = { 3,5,7,9,0,0,0,0,-1,0,0,0,0,0,-1,0,0,0 };
12 static char test_qi
[18] = { 3,5,7,9,1,4,22,-12,7,8,9,7,1,-12,7,8,9,7 };
17 if (__sync_fetch_and_add(AI
+4, 1) != 0)
19 if (__sync_fetch_and_add(AI
+5, 4) != 0)
21 if (__sync_fetch_and_add(AI
+6, 22) != 0)
23 if (__sync_fetch_and_sub(AI
+7, 12) != 0)
25 if (__sync_fetch_and_and(AI
+8, 7) != (char)-1)
27 if (__sync_fetch_and_or(AI
+9, 8) != 0)
29 if (__sync_fetch_and_xor(AI
+10, 9) != 0)
31 if (__sync_fetch_and_nand(AI
+11, 7) != 0)
34 if (__sync_add_and_fetch(AI
+12, 1) != 1)
36 if (__sync_sub_and_fetch(AI
+13, 12) != (char)-12)
38 if (__sync_and_and_fetch(AI
+14, 7) != 7)
40 if (__sync_or_and_fetch(AI
+15, 8) != 8)
42 if (__sync_xor_and_fetch(AI
+16, 9) != 9)
44 if (__sync_nand_and_fetch(AI
+17, 7) != 7)
49 static short init_hi
[18] = { 3,5,7,9,0,0,0,0,-1,0,0,0,0,0,-1,0,0,0 };
50 static short test_hi
[18] = { 3,5,7,9,1,4,22,-12,7,8,9,7,1,-12,7,8,9,7 };
55 if (__sync_fetch_and_add(AL
+4, 1) != 0)
57 if (__sync_fetch_and_add(AL
+5, 4) != 0)
59 if (__sync_fetch_and_add(AL
+6, 22) != 0)
61 if (__sync_fetch_and_sub(AL
+7, 12) != 0)
63 if (__sync_fetch_and_and(AL
+8, 7) != -1)
65 if (__sync_fetch_and_or(AL
+9, 8) != 0)
67 if (__sync_fetch_and_xor(AL
+10, 9) != 0)
69 if (__sync_fetch_and_nand(AL
+11, 7) != 0)
72 if (__sync_add_and_fetch(AL
+12, 1) != 1)
74 if (__sync_sub_and_fetch(AL
+13, 12) != -12)
76 if (__sync_and_and_fetch(AL
+14, 7) != 7)
78 if (__sync_or_and_fetch(AL
+15, 8) != 8)
80 if (__sync_xor_and_fetch(AL
+16, 9) != 9)
82 if (__sync_nand_and_fetch(AL
+17, 7) != 7)
88 memcpy(AI
, init_qi
, sizeof(init_qi
));
89 memcpy(AL
, init_hi
, sizeof(init_hi
));
94 if (memcmp (AI
, test_qi
, sizeof(test_qi
)))
96 if (memcmp (AL
, test_hi
, sizeof(test_hi
)))