Skip to content

Commit 45692bd

Browse files
committed
---
yaml --- r: 53805 b: refs/heads/dist-snap c: 885d0d3 h: refs/heads/master i: 53803: 9776e6b v: v3
1 parent cbb1657 commit 45692bd

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
@@ -7,7 +7,7 @@ refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
99
refs/heads/incoming: 44d4d6de762f3f9aae1fedcf454c66b79b3ad58d
10-
refs/heads/dist-snap: 666e1b463600841ae593a1468a837dc59bb7cab5
10+
refs/heads/dist-snap: 885d0d3d3369bef72590a4d5671c0de83e968dda
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
1313
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0

branches/dist-snap/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/dist-snap/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/dist-snap/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)