2008-01-25 Douglas Gregor <doug.gregor@gmail.com>
[official-gcc.git] / gcc / testsuite / gcc.dg / builtin-bswap-1.c
blob6b4a805536cef4bd43c66429ebdc66685c7c95db
1 /* { dg-do compile } */
2 /* { dg-require-effective-target stdint_types } */
3 /* { dg-options "" } */
4 /* { dg-final { scan-assembler-not "__builtin_" } } */
6 #include <stdint.h>
8 uint32_t foo (uint32_t a)
10 int b;
12 b = __builtin_bswap32 (a);
14 return b;