diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-11-07 15:14:10 -0800 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-11-07 15:14:10 -0800 |
| commit | 1103fe8ca05f9048599b56ab2d9b99ba6de8a1f2 (patch) | |
| tree | f4c93dd891519ff151c7ba1ec5f86aa1d89892be /src/comp/syntax/parse | |
| parent | b0c2416270502c124e031b5e86a74cb14eff7662 (diff) | |
| download | rust-1103fe8ca05f9048599b56ab2d9b99ba6de8a1f2.tar.gz rust-1103fe8ca05f9048599b56ab2d9b99ba6de8a1f2.zip | |
Remove native "rust" 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 f859300f3ea..3fff03addfd 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -2007,8 +2007,6 @@ fn parse_item_native_mod(p: parser, attrs: [ast::attribute]) -> @ast::item { if !is_word(p, "mod") { let t = parse_str(p); if str::eq(t, "cdecl") { - } else if str::eq(t, "rust") { - abi = ast::native_abi_rust; } else if str::eq(t, "llvm") { abi = ast::native_abi_llvm; } else if str::eq(t, "rust-intrinsic") { |
