about summary refs log tree commit diff
path: root/src/rustc/front
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-03-23 11:51:06 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-03-23 12:21:55 +0100
commitf5024692d49be49b2efff452059f83efaebfd0ee (patch)
tree23da664fb1bf1c374081550309731cf206341b57 /src/rustc/front
parent0303396f4cc292b54a0b097364581c88b8631696 (diff)
downloadrust-f5024692d49be49b2efff452059f83efaebfd0ee.tar.gz
rust-f5024692d49be49b2efff452059f83efaebfd0ee.zip
Remove support for the old-style intrinsics
Closes #2042
Closes #1981
Diffstat (limited to 'src/rustc/front')
-rw-r--r--src/rustc/front/attr.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/rustc/front/attr.rs b/src/rustc/front/attr.rs
index 8c991517d88..4fdb3e2fe7e 100644
--- a/src/rustc/front/attr.rs
+++ b/src/rustc/front/attr.rs
@@ -237,9 +237,6 @@ fn native_abi(attrs: [ast::attribute]) -> either<str, ast::native_abi> {
       option::none {
         either::right(ast::native_abi_cdecl)
       }
-      option::some("rust-intrinsic") {
-        either::right(ast::native_abi_rust_intrinsic)
-      }
       option::some("rust-builtin") {
         either::right(ast::native_abi_rust_builtin)
       }