mirror of
https://github.com/ziglang/zig.git
synced 2026-02-12 20:37:54 +00:00
clang.zig cleanup #3: move block around
This commit is contained in:
parent
abf97cc232
commit
5df2e791c2
@ -648,6 +648,27 @@ pub const ZigClangBuiltinTypeKind = extern enum {
|
||||
OMPArraySection,
|
||||
};
|
||||
|
||||
pub const ZigClangCallingConv = extern enum {
|
||||
C,
|
||||
X86StdCall,
|
||||
X86FastCall,
|
||||
X86ThisCall,
|
||||
X86VectorCall,
|
||||
X86Pascal,
|
||||
Win64,
|
||||
X86_64SysV,
|
||||
X86RegCall,
|
||||
AAPCS,
|
||||
AAPCS_VFP,
|
||||
IntelOclBicc,
|
||||
SpirFunction,
|
||||
OpenCLKernel,
|
||||
Swift,
|
||||
PreserveMost,
|
||||
PreserveAll,
|
||||
AArch64VectorCall,
|
||||
};
|
||||
|
||||
pub extern fn ZigClangSourceManager_getSpellingLoc(arg0: ?*const struct_ZigClangSourceManager, Loc: struct_ZigClangSourceLocation) struct_ZigClangSourceLocation;
|
||||
pub extern fn ZigClangSourceManager_getFilename(self: *const struct_ZigClangSourceManager, SpellingLoc: struct_ZigClangSourceLocation) ?[*]const u8;
|
||||
pub extern fn ZigClangSourceManager_getSpellingLineNumber(arg0: ?*const struct_ZigClangSourceManager, Loc: struct_ZigClangSourceLocation) c_uint;
|
||||
@ -832,27 +853,6 @@ pub const struct_ZigClangQualType = extern struct {
|
||||
ptr: ?*c_void,
|
||||
};
|
||||
|
||||
pub const ZigClangCallingConv = extern enum {
|
||||
C,
|
||||
X86StdCall,
|
||||
X86FastCall,
|
||||
X86ThisCall,
|
||||
X86VectorCall,
|
||||
X86Pascal,
|
||||
Win64,
|
||||
X86_64SysV,
|
||||
X86RegCall,
|
||||
AAPCS,
|
||||
AAPCS_VFP,
|
||||
IntelOclBicc,
|
||||
SpirFunction,
|
||||
OpenCLKernel,
|
||||
Swift,
|
||||
PreserveMost,
|
||||
PreserveAll,
|
||||
AArch64VectorCall,
|
||||
};
|
||||
|
||||
pub const ZigClangStorageClass = extern enum {
|
||||
None,
|
||||
Extern,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user