Skip to content

Commit ea88511

Browse files
committed
---
yaml --- r: 51319 b: refs/heads/incoming c: 885d0d3 h: refs/heads/master i: 51317: 73b1a11 51315: 61488b8 51311: d935bfd v: v3
1 parent a7ec513 commit ea88511

File tree

4 files changed

+2
-11
lines changed

4 files changed

+2
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/incoming: 666e1b463600841ae593a1468a837dc59bb7cab5
9+
refs/heads/incoming: 885d0d3d3369bef72590a4d5671c0de83e968dda
1010
refs/heads/dist-snap: 8b98e5a296d95c5e832db0756828e5bec31c6f50
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/etc/vim/syntax/rust.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ elseif exists("b:current_syntax")
1111
endif
1212

1313
syn match rustAssert "\<assert\(\w\)*"
14-
syn keyword rustKeyword __asm__ as break
14+
syn keyword rustKeyword as break
1515
syn keyword rustKeyword copy do drop else extern
1616
syn keyword rustKeyword for if impl let log
1717
syn keyword rustKeyword loop match mod once priv pub pure

branches/incoming/src/libsyntax/parse/parser.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1184,14 +1184,6 @@ pub impl Parser {
11841184
}
11851185
}
11861186
hi = self.span.hi;
1187-
} else if self.eat_keyword(&~"__asm__") {
1188-
self.expect(&token::LPAREN);
1189-
let asm = self.parse_str();
1190-
self.expect(&token::COMMA);
1191-
let cons = self.parse_str();
1192-
ex = expr_inline_asm(asm, cons);
1193-
hi = self.span.hi;
1194-
self.expect(&token::RPAREN);
11951187
} else if self.eat_keyword(&~"log") {
11961188
self.expect(&token::LPAREN);
11971189
let lvl = self.parse_expr();

branches/incoming/src/libsyntax/parse/token.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,6 @@ pub fn temporary_keyword_table() -> HashMap<~str, ()> {
488488
pub fn strict_keyword_table() -> HashMap<~str, ()> {
489489
let words = HashMap();
490490
let keys = ~[
491-
~"__asm__",
492491
~"as", ~"assert",
493492
~"break",
494493
~"const", ~"copy",

0 commit comments

Comments
 (0)