syntax: Remove #[allow(vecs_implicitly_copyable)]

This commit is contained in:
Alex Crichton 2013-05-12 00:25:31 -04:00
parent 2951527528
commit 92d39fe4d5
25 changed files with 235 additions and 232 deletions

View file

@ -119,13 +119,13 @@ pub fn expand_asm(cx: @ext_ctxt, sp: span, tts: &[ast::token_tree])
cons = str::connect(clobs, ",");
}
Options => {
let option = *p.parse_str();
let option = p.parse_str();
if option == ~"volatile" {
if "volatile" == *option {
volatile = true;
} else if option == ~"alignstack" {
} else if "alignstack" == *option {
alignstack = true;
} else if option == ~"intel" {
} else if "intel" == *option {
dialect = ast::asm_intel;
}