Make inline assembly volatile if it has no outputs. Fixes #46026

This commit is contained in:
John Kåre Alsaker
2017-11-16 10:08:19 +01:00
parent 8385fc062d
commit a29d8545b5
2 changed files with 32 additions and 0 deletions

View File

@@ -239,6 +239,12 @@ pub fn expand_asm<'cx>(cx: &'cx mut ExtCtxt,
}
}
// If there are no outputs, the inline assembly is executed just for its side effects,
// so ensure that it is volatile
if outputs.is_empty() {
volatile = true;
}
MacEager::expr(P(ast::Expr {
id: ast::DUMMY_NODE_ID,
node: ast::ExprKind::InlineAsm(P(ast::InlineAsm {