Mercurial > hg > CbC > CbC_llvm
view libclc/generic/include/utils.h @ 150:1d019706d866
LLVM10
author | anatofuz |
---|---|
date | Thu, 13 Feb 2020 15:10:13 +0900 |
parents | |
children |
line wrap: on
line source
#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