authorgravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-08-20 01:22:44+02:00
committergravatar for robin@voetter.nlRobin Voetter <robin@voetter.nl> 2021-09-20 02:29:03+02:00
log60231086508d26689d53b8bc545e8fe98cad966d
treeea47e7878c425ba48a1ab128978dcab40b2e821f
parentcfbe9a6f61c98cb1b18e18aa6a4acf7785590953

Address Spaces: x86 segment address spaces in builtin


1 files changed, 3 insertions(+), 1 deletions(-)

lib/std/builtin.zig+3-1
...@@ -170,7 +170,9 @@ pub const CallingConvention = enum {...@@ -170,7 +170,9 @@ pub const CallingConvention = enum {
170/// therefore must be kept in sync with the compiler implementation.170/// therefore must be kept in sync with the compiler implementation.
171pub const AddressSpace = enum {171pub const AddressSpace = enum {
172 generic,172 generic,
173 special,173 gs,
174 fs,
175 ss,
174};176};
175177
176/// This data structure is used by the Zig language code generation and178/// This data structure is used by the Zig language code generation and