File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
branches/try/src/libsyntax/parse Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 2
2
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
3
3
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4
4
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5
- refs/heads/try: ab8fa495d08f64c5a82bc8ed39f9e2066aec4b6b
5
+ refs/heads/try: 9c1910a66db95468608c9cc02a5012e3db7f4e09
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
Original file line number Diff line number Diff line change @@ -94,8 +94,11 @@ impl parser_common for parser {
94
94
95
95
fn eat_keyword ( word : str ) -> bool {
96
96
self . require_keyword ( word) ;
97
- alt copy self . token {
98
- token:: IDENT ( sid, false ) {
97
+
98
+ // FIXME: this gratuitous use of @ is to
99
+ // workaround LLVM bug #13042
100
+ alt @self . token {
101
+ @token:: IDENT ( sid, false ) {
99
102
if str:: eq ( word, self . get_str ( sid) ) {
100
103
self . bump ( ) ;
101
104
ret true;
You can’t perform that action at this time.
0 commit comments