diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-15 14:11:55 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-15 14:11:55 -0800 |
| commit | 9b7bc456ea7068fe6d24de995e083c3ea1e1ddaa (patch) | |
| tree | 779763cb0fc6c9365f1ad46c7436facda387ce8e /src/libsyntax/ext | |
| parent | b86a84867a31a04b9e9c35efc313b2961312def2 (diff) | |
| parent | 31261fd629265aead5f0bdb45774067966896b1b (diff) | |
| download | rust-9b7bc456ea7068fe6d24de995e083c3ea1e1ddaa.tar.gz rust-9b7bc456ea7068fe6d24de995e083c3ea1e1ddaa.zip | |
rollup merge of #21144: nagisa/asm-str-fix
Fixes #21045
Diffstat (limited to 'src/libsyntax/ext')
| -rw-r--r-- | src/libsyntax/ext/asm.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/libsyntax/ext/asm.rs b/src/libsyntax/ext/asm.rs index fd3bac5b2fc..4258eb32fdf 100644 --- a/src/libsyntax/ext/asm.rs +++ b/src/libsyntax/ext/asm.rs @@ -63,6 +63,12 @@ pub fn expand_asm<'cx>(cx: &'cx mut ExtCtxt, sp: Span, tts: &[ast::TokenTree]) 'statement: loop { match state { Asm => { + if asm_str_style.is_some() { + // If we already have a string with instructions, + // ending up in Asm state again is an error. + cx.span_err(sp, "malformed inline assembly"); + return DummyResult::expr(sp); + } let (s, style) = match expr_to_string(cx, p.parse_expr(), "inline assembly must be a string literal") { Some((s, st)) => (s, st), |
