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 18:45:25 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-09 18:45:25 -0800
commit0d9e32d70d89bf8f3263518f780d820644dd8513 (patch)
treebda707ab17d6f52c278d5bdf51de6799be21e9e8 /src/comp/syntax/parse
parentb7ab28b50fa346cf14e6fe45ea2c60434dcd979d (diff)
downloadrust-0d9e32d70d89bf8f3263518f780d820644dd8513.tar.gz
rust-0d9e32d70d89bf8f3263518f780d820644dd8513.zip
Rename "c-stack-stdcall" ABI to "stdcall"
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 87b2cc175c0..214955b14a0 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -2010,8 +2010,6 @@ fn parse_item_native_mod(p: parser, attrs: [ast::attribute]) -> @ast::item {
             abi = ast::native_abi_rust_intrinsic;
         } else if str::eq(t, "cdecl") {
             abi = ast::native_abi_cdecl;
-        } else if str::eq(t, "c-stack-stdcall") {
-            abi = ast::native_abi_stdcall;
         } else if str::eq(t, "stdcall") {
             abi = ast::native_abi_stdcall;
         } else {