[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / libclc / generic / include / utils.h
blob018a7b31f8ff3d9d63c146e6d2b8cbb73ab60a16
1 #ifndef __CLC_UTILS_H_
2 #define __CLC_UTILS_H_
4 #define __CLC_CONCAT(x, y) x ## y
5 #define __CLC_XCONCAT(x, y) __CLC_CONCAT(x, y)
7 #define __CLC_STR(x) #x
8 #define __CLC_XSTR(x) __CLC_STR(x)
10 #endif