bolt/deps/llvm-18.1.8/libclc/generic/include/utils.h
2025-02-14 19:21:04 +01:00

10 lines
196 B
C

#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