Remove native "x86stdcall" ABI

This commit is contained in:
Brian Anderson 2011-11-09 15:56:28 -08:00
parent dec6b53761
commit c7f0ca6063
6 changed files with 3 additions and 21 deletions

View file

@ -2008,8 +2008,6 @@ fn parse_item_native_mod(p: parser, attrs: [ast::attribute]) -> @ast::item {
let t = parse_str(p);
if str::eq(t, "rust-intrinsic") {
abi = ast::native_abi_rust_intrinsic;
} else if str::eq(t, "x86stdcall") {
abi = ast::native_abi_x86stdcall;
} else if str::eq(t, "c-stack-cdecl") {
abi = ast::native_abi_c_stack_cdecl;
} else if str::eq(t, "c-stack-stdcall") {