about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-11-09 15:56:28 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-09 16:47:43 -0800
commitc7f0ca6063022e244ab6a2d4e85db1c13867b084 (patch)
tree9fb79e009597948fea5565417d6372a11dba504e /src/comp/syntax/parse
parentdec6b53761f8157ea553db09b6d5ba40a433c9c4 (diff)
downloadrust-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.rs2
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") {