Skip to content

Commit 02d106a

Browse files
committed
---
yaml --- r: 138946 b: refs/heads/try2 c: 885d0d3 h: refs/heads/master v: v3
1 parent 3182c5c commit 02d106a

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
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 666e1b463600841ae593a1468a837dc59bb7cab5
8+
refs/heads/try2: 885d0d3d3369bef72590a4d5671c0de83e968dda
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

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