repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git]
/
libclc
/
generic
/
include
/
utils.h
blob
018a7b31f8ff3d9d63c146e6d2b8cbb73ab60a16
1
#ifndef __CLC_UTILS_H_
2
#define __CLC_UTILS_H_
3
4
#define __CLC_CONCAT(x, y) x ## y
5
#define __CLC_XCONCAT(x, y) __CLC_CONCAT(x, y)
6
7
#define __CLC_STR(x) #x
8
#define __CLC_XSTR(x) __CLC_STR(x)
9
10
#endif