From 2bc17adc299ef0fcfbf7c41fc1ad12950ffd7e56 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Tue, 3 May 2011 17:49:58 -0700 Subject: Revert "Rename the "llvm" API to "llvm-intrinsic"" due to tinderbox bustage This reverts commit 6871c245a67fab222eccc2a21dcb620d11d3b0d0. --- src/comp/front/parser.rs | 2 +- src/comp/pretty/pprust.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'src/comp') diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs index 904efc2e..b886e8ae 100644 --- a/src/comp/front/parser.rs +++ b/src/comp/front/parser.rs @@ -2013,7 +2013,7 @@ fn parse_item_native_mod(parser p) -> @ast.item { if (_str.eq(t, "cdecl")) { } else if (_str.eq(t, "rust")) { abi = ast.native_abi_rust; - } else if (_str.eq(t, "llvm-intrinsic")) { + } else if (_str.eq(t, "llvm")) { abi = ast.native_abi_llvm; } else { p.err("unsupported abi: " + t); diff --git a/src/comp/pretty/pprust.rs b/src/comp/pretty/pprust.rs index 1f84e18a..7ef91ce8 100644 --- a/src/comp/pretty/pprust.rs +++ b/src/comp/pretty/pprust.rs @@ -229,7 +229,6 @@ fn print_item(ps s, @ast.item item) { wrd1(s, "native"); alt (nmod.abi) { case (ast.native_abi_rust) {wrd1(s, "\"rust\"");} - case (ast.native_abi_llvm) {wrd1(s, "\"llvm-intrinsic\"");} case (ast.native_abi_cdecl) {wrd1(s, "\"cdecl\"");} } wrd1(s, "mod"); -- cgit v1.2.3