]> git.lizzy.rs Git - rust.git/blobdiff - src/libsyntax/ast.rs
Use ast::AsmDialect's variants qualified, and drop the pointless prefix.
[rust.git] / src / libsyntax / ast.rs
index 7b2b2c9012608e34d1c51183d87dd31cdaa973c1..5b04fc0e6977b3ece9c9f1d26f31702b70ca088b 100644 (file)
@@ -10,7 +10,6 @@
 
 // The Rust abstract syntax tree.
 
-pub use self::AsmDialect::*;
 pub use self::AttrStyle::*;
 pub use self::BindingMode::*;
 pub use self::BinOp_::*;
@@ -1440,8 +1439,8 @@ pub enum Ty_ {
 
 #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug, Copy)]
 pub enum AsmDialect {
-    AsmAtt,
-    AsmIntel
+    Att,
+    Intel,
 }
 
 #[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug)]