Remove unused abi attributes.

They've been replaced by putting the name on the extern block.

  #[abi = "foo"]

goes to

  extern "foo" { }

Closes #9483.
This commit is contained in:
Steve Klabnik 2013-09-29 07:46:26 -07:00
parent 5b10781c7b
commit 16fc6a694c
34 changed files with 56 additions and 129 deletions

View file

@ -170,7 +170,6 @@ pub trait TyVisitor {
fn visit_closure_ptr(&mut self, ck: uint) -> bool;
}
#[abi = "rust-intrinsic"]
extern "rust-intrinsic" {
/// Atomic compare and exchange, sequentially consistent.