Skip to content

Commit 931748a

Browse files
committed
---
yaml --- r: 50629 b: refs/heads/try c: 885d0d3 h: refs/heads/master i: 50627: 6281071 v: v3
1 parent 9b47c16 commit 931748a

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5-
refs/heads/try: 666e1b463600841ae593a1468a837dc59bb7cab5
5+
refs/heads/try: 885d0d3d3369bef72590a4d5671c0de83e968dda
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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/try/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/try/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)