Sign in
llvm
/
llvm-project
/
libclc
/
4c9bc8c2affa06b88ec2887f9c2f24548ac64abf
/
.
/
generic
/
include
/
utils.h
blob: 018a7b31f8ff3d9d63c146e6d2b8cbb73ab60a16 [
file
] [
log
] [
blame
]
#ifndef
__CLC_UTILS_H_
#define
__CLC_UTILS_H_
#define
__CLC_CONCAT
(
x
,
y
)
x
## y
#define
__CLC_XCONCAT
(
x
,
y
)
__CLC_CONCAT
(
x
,
y
)
#define
__CLC_STR
(
x
)
#x
#define
__CLC_XSTR
(
x
)
__CLC_STR
(
x
)
#endif