Remove native "x86stdcall" ABI
This commit is contained in:
parent
dec6b53761
commit
c7f0ca6063
6 changed files with 3 additions and 21 deletions
|
|
@ -260,7 +260,6 @@ fn parse_ty(st: @pstate, sd: str_def) -> ty::t {
|
|||
let abi;
|
||||
alt next(st) as char {
|
||||
'i' { abi = ast::native_abi_rust_intrinsic; }
|
||||
's' { abi = ast::native_abi_x86stdcall; }
|
||||
'C' { abi = ast::native_abi_c_stack_cdecl; }
|
||||
'S' { abi = ast::native_abi_c_stack_stdcall; }
|
||||
}
|
||||
|
|
|
|||
|
|
@ -143,7 +143,6 @@ fn enc_sty(w: io::writer, cx: @ctxt, st: ty::sty) {
|
|||
w.write_char('N');
|
||||
alt abi {
|
||||
native_abi_rust_intrinsic. { w.write_char('i'); }
|
||||
native_abi_x86stdcall. { w.write_char('s'); }
|
||||
native_abi_c_stack_cdecl. { w.write_char('C'); }
|
||||
native_abi_c_stack_stdcall. { w.write_char('S'); }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue