summary refs log tree commit diff
path: root/src/comp/front
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2011-05-03 15:55:01 -0700
committerPatrick Walton <pcwalton@mimiga.net>2011-05-03 15:55:01 -0700
commit6871c245a67fab222eccc2a21dcb620d11d3b0d0 (patch)
tree69fbc94f6f4d696f5a7eb69ba65028da09b15d02 /src/comp/front
parente43729ccf2577fad114107a336099da75eff0ded (diff)
downloadrust-6871c245a67fab222eccc2a21dcb620d11d3b0d0.tar.gz
rust-6871c245a67fab222eccc2a21dcb620d11d3b0d0.zip
Rename the "llvm" API to "llvm-intrinsic"
Diffstat (limited to 'src/comp/front')
-rw-r--r--src/comp/front/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs
index 3e8ca85a830..4beb5afc260 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")) {
+        } else if (_str.eq(t, "llvm-intrinsic")) {
             abi = ast.native_abi_llvm;
         } else {
             p.err("unsupported abi: " + t);