Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: src/typing-asm.cc

Issue 1702063002: Non-pattern rewriting revisited (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix a bug I introduced when rebasing Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/parsing/preparser.cc ('k') | src/wasm/asm-wasm-builder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/typing-asm.h" 5 #include "src/typing-asm.h"
6 6
7 #include <limits> 7 #include <limits>
8 8
9 #include "src/v8.h" 9 #include "src/v8.h"
10 10
(...skipping 1533 matching lines...) Expand 10 before | Expand all | Expand 10 after
1544 computed_type_->Print(); 1544 computed_type_->Print();
1545 PrintF("Expected type: "); 1545 PrintF("Expected type: ");
1546 expected_type_->Print(); 1546 expected_type_->Print();
1547 #endif 1547 #endif
1548 FAIL(expr, msg); 1548 FAIL(expr, msg);
1549 } 1549 }
1550 expected_type_ = save; 1550 expected_type_ = save;
1551 } 1551 }
1552 1552
1553 1553
1554 void AsmTyper::VisitRewritableAssignmentExpression( 1554 void AsmTyper::VisitRewritableExpression(RewritableExpression* expr) {
1555 RewritableAssignmentExpression* expr) {
1556 RECURSE(Visit(expr->expression())); 1555 RECURSE(Visit(expr->expression()));
1557 } 1556 }
1558 1557
1559 1558
1560 } // namespace internal 1559 } // namespace internal
1561 } // namespace v8 1560 } // namespace v8
OLDNEW
« no previous file with comments | « src/parsing/preparser.cc ('k') | src/wasm/asm-wasm-builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698