[libc][NFC] Move aligned access implementations to separate header
[llvm-project.git] / libc / spec / gpu_ext.td
blob69117bbde49933f629ef2456f0d62bcfe773651d
1 def GPUExtensions : StandardSpec<"GPUExtensions"> {
2   HeaderSpec RPC = HeaderSpec<
3     "gpu/rpc.h",
4     [], // Macros
5     [], // Types
6     [], // Enumerations
7     [
8         FunctionSpec<
9             "rpc_reset",
10             RetValSpec<VoidType>,
11             [ArgSpec<UnsignedIntType>, ArgSpec<VoidPtr>]
12         >,
13     ]
14   >;
15   let Headers = [
16     RPC,
17   ];