mirror of
https://github.com/ziglang/zig.git
synced 2026-01-03 12:03:19 +00:00
12 lines
204 B
Zig
12 lines
204 B
Zig
pub usingnamespace @import("std").spu;
|
|
|
|
pub const Register = enum {
|
|
dummy,
|
|
|
|
pub fn allocIndex(self: Register) ?u4 {
|
|
return null;
|
|
}
|
|
};
|
|
|
|
pub const callee_preserved_regs = [_]Register{};
|