Add proper support for indirect output constraints in inline asm

This commit is contained in:
Amanieu d'Antras 2015-11-06 13:31:02 +00:00
parent 3e2ebaa918
commit 9d7b113b44
17 changed files with 78 additions and 39 deletions

View file

@ -1462,7 +1462,7 @@ pub enum AsmDialect {
pub struct InlineAsm {
pub asm: InternedString,
pub asm_str_style: StrStyle,
pub outputs: Vec<(InternedString, P<Expr>, bool)>,
pub outputs: Vec<(InternedString, P<Expr>, bool, bool)>,
pub inputs: Vec<(InternedString, P<Expr>)>,
pub clobbers: Vec<InternedString>,
pub volatile: bool,