diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-11-09 18:44:12 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-11-09 18:44:12 -0800 |
| commit | b7ab28b50fa346cf14e6fe45ea2c60434dcd979d (patch) | |
| tree | 38747215bde2a821ba1163b9598aed9806af0cbe /src/comp/syntax | |
| parent | 2b9b6e3521dd06ff49f7816eb29a822bf95c15e6 (diff) | |
| download | rust-b7ab28b50fa346cf14e6fe45ea2c60434dcd979d.tar.gz rust-b7ab28b50fa346cf14e6fe45ea2c60434dcd979d.zip | |
Rename "c-stack-cdecl" ABI to "cdecl"
Diffstat (limited to 'src/comp/syntax')
| -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 5ca1e46aaed..87b2cc175c0 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, "c-stack-cdecl") { - abi = ast::native_abi_cdecl; } else if str::eq(t, "cdecl") { abi = ast::native_abi_cdecl; } else if str::eq(t, "c-stack-stdcall") { |
