aboutsummaryrefslogtreecommitdiff
path: root/test/Sema/stmt_exprs.c
blob: 8165cf03aa431b99b8fac962312df7a61116fffd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang %s -fsyntax-only

typedef unsigned __uint32_t;

#define __byte_swap_int_var(x) \
__extension__ ({ register __uint32_t __X = (x); \
   __asm ("bswap %0" : "+r" (__X)); \
   __X; })

int test(int _x) {
 return (__byte_swap_int_var(_x));
}