syntax: Remove #[allow(vecs_implicitly_copyable)]
This commit is contained in:
parent
2951527528
commit
92d39fe4d5
25 changed files with 235 additions and 232 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue