diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-11-09 15:56:28 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-11-09 16:47:43 -0800 |
| commit | c7f0ca6063022e244ab6a2d4e85db1c13867b084 (patch) | |
| tree | 9fb79e009597948fea5565417d6372a11dba504e /src/comp/syntax/parse | |
| parent | dec6b53761f8157ea553db09b6d5ba40a433c9c4 (diff) | |
| download | rust-c7f0ca6063022e244ab6a2d4e85db1c13867b084.tar.gz rust-c7f0ca6063022e244ab6a2d4e85db1c13867b084.zip | |
Remove native "x86stdcall" ABI
Diffstat (limited to 'src/comp/syntax/parse')
| -rw-r--r-- | src/comp/syntax/parse/parser.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs index 1358d704fe0..a1a70c44a88 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -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") { |
