Add proper support for indirect output constraints in inline asm
This commit is contained in:
parent
3e2ebaa918
commit
9d7b113b44
17 changed files with 78 additions and 39 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue