mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
25 lines
639 B
Zig
Vendored
25 lines
639 B
Zig
Vendored
pub const Assembly = @import("backend/Assembly.zig");
|
|
pub const CodeGenOptions = @import("backend/CodeGenOptions.zig");
|
|
pub const Interner = @import("backend/Interner.zig");
|
|
pub const Ir = @import("backend/Ir.zig");
|
|
pub const Object = @import("backend/Object.zig");
|
|
|
|
pub const CallingConvention = enum {
|
|
c,
|
|
stdcall,
|
|
thiscall,
|
|
vectorcall,
|
|
fastcall,
|
|
regcall,
|
|
riscv_vector,
|
|
aarch64_sve_pcs,
|
|
aarch64_vector_pcs,
|
|
arm_aapcs,
|
|
arm_aapcs_vfp,
|
|
x86_64_sysv,
|
|
x86_64_win,
|
|
};
|
|
|
|
pub const version_str = "aro-zig";
|
|
pub const version = @import("std").SemanticVersion.parse(version_str) catch unreachable;
|