PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / builtin-bswap-3.c
blob031817e780f083a4bfec87598a5a3ca1a8a28579
1 /* { dg-do run } */
2 /* { dg-require-effective-target stdint_types } */
3 /* { dg-options "" } */
4 #include <stdint.h>
6 extern void abort (void);
8 int main (void)
10 uint32_t a = 0x80000000;
11 uint32_t b;
13 b = __builtin_bswap32 (a);
14 a = __builtin_bswap32 (b);
16 if (b != 0x80 || a != 0x80000000)
17 abort ();
19 return 0;