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-07 15:29:05 -0800
committerBrian Anderson <banderson@mozilla.com>2011-11-07 15:29:05 -0800
commitfcd39b1191f92d1f1851fa71098471ad60ab22c2 (patch)
tree0f8685e2850411d536d40a15188dbbed8e3d766d /src/comp/syntax/parse
parent1103fe8ca05f9048599b56ab2d9b99ba6de8a1f2 (diff)
downloadrust-fcd39b1191f92d1f1851fa71098471ad60ab22c2.tar.gz
rust-fcd39b1191f92d1f1851fa71098471ad60ab22c2.zip
Remove native "llvm" 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 3fff03addfd..9db7c8ae5f0 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, "llvm") {
-            abi = ast::native_abi_llvm;
         } else if str::eq(t, "rust-intrinsic") {
             abi = ast::native_abi_rust_intrinsic;
         } else if str::eq(t, "x86stdcall") {