rustc: Rename native_abi_c_stack_stdcall to native_abi_stdcall

This commit is contained in:
Brian Anderson 2011-11-09 15:58:53 -08:00
parent c7f0ca6063
commit 10c35959e7
7 changed files with 8 additions and 8 deletions

View file

@ -2011,7 +2011,7 @@ fn parse_item_native_mod(p: parser, attrs: [ast::attribute]) -> @ast::item {
} else if str::eq(t, "c-stack-cdecl") {
abi = ast::native_abi_c_stack_cdecl;
} else if str::eq(t, "c-stack-stdcall") {
abi = ast::native_abi_c_stack_stdcall;
abi = ast::native_abi_stdcall;
} else {
p.fatal("unsupported abi: " + t);
}