summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/builtin-bswap-1.c
blob: 02912db5a0d66275e9bd009de1c934efdd813326 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-options "" } */
/* { dg-final { scan-assembler-not "__builtin_" } } */

#include <stdint.h>

uint32_t foo (uint32_t a)
{
  int b;

  b = __builtin_bswap32 (a);

  return b;
}