@@ -18,8 +18,7 @@ use codemap;
18
18
use codemap:: Span ;
19
19
use ext:: base;
20
20
use ext:: base:: * ;
21
- use parse:: token:: InternedString ;
22
- use parse:: token;
21
+ use parse:: { self , token} ;
23
22
use ptr:: P ;
24
23
25
24
enum State {
@@ -48,8 +47,17 @@ static OPTIONS: &'static [&'static str] = &["volatile", "alignstack", "intel"];
48
47
49
48
pub fn expand_asm < ' cx > ( cx : & ' cx mut ExtCtxt , sp : Span , tts : & [ ast:: TokenTree ] )
50
49
-> Box < base:: MacResult +' cx > {
51
- let mut p = cx. new_parser_from_tts ( tts) ;
52
- let mut asm = InternedString :: new ( "" ) ;
50
+ // Split the tts before the first colon, to avoid `asm!("x": y)` being
51
+ // parsed as `asm!(z)` with `z = "x": y` which is type ascription.
52
+ let first_colon = tts. iter ( ) . position ( |tt| {
53
+ match * tt {
54
+ ast:: TtToken ( _, token:: Colon ) |
55
+ ast:: TtToken ( _, token:: ModSep ) => true ,
56
+ _ => false
57
+ }
58
+ } ) . unwrap_or ( tts. len ( ) ) ;
59
+ let mut p = cx. new_parser_from_tts ( & tts[ first_colon..] ) ;
60
+ let mut asm = token:: InternedString :: new ( "" ) ;
53
61
let mut asm_str_style = None ;
54
62
let mut outputs = Vec :: new ( ) ;
55
63
let mut inputs = Vec :: new ( ) ;
@@ -69,12 +77,22 @@ pub fn expand_asm<'cx>(cx: &'cx mut ExtCtxt, sp: Span, tts: &[ast::TokenTree])
69
77
cx. span_err ( sp, "malformed inline assembly" ) ;
70
78
return DummyResult :: expr ( sp) ;
71
79
}
72
- let ( s, style) = match expr_to_string ( cx, p. parse_expr ( ) ,
80
+ // Nested parser, stop before the first colon (see above).
81
+ let mut p2 = cx. new_parser_from_tts ( & tts[ ..first_colon] ) ;
82
+ let ( s, style) = match expr_to_string ( cx, p2. parse_expr ( ) ,
73
83
"inline assembly must be a string literal" ) {
74
84
Some ( ( s, st) ) => ( s, st) ,
75
85
// let compilation continue
76
86
None => return DummyResult :: expr ( sp) ,
77
87
} ;
88
+
89
+ // This is most likely malformed.
90
+ if p2. token != token:: Eof {
91
+ let mut extra_tts = p2. parse_all_token_trees ( ) ;
92
+ extra_tts. extend ( tts[ first_colon..] . iter ( ) . cloned ( ) ) ;
93
+ p = parse:: tts_to_parser ( cx. parse_sess , extra_tts, cx. cfg ( ) ) ;
94
+ }
95
+
78
96
asm = s;
79
97
asm_str_style = Some ( style) ;
80
98
}
0 commit comments