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

Unified Diff: src/flow-graph.cc

Issue 1563001: Fix presubmit failure. (Closed)
Patch Set: Created 10 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/flow-graph.cc
diff --git a/src/flow-graph.cc b/src/flow-graph.cc
index e4e420c7d6f2e04cb0d71055049a14688b82fe40..0b034e2f17f29582d9a20794cf9f8ee644152cae 100644
--- a/src/flow-graph.cc
+++ b/src/flow-graph.cc
@@ -631,7 +631,7 @@ void InstructionPrinter::VisitAssignment(Assignment* expr) {
// Print the left-hand side.
Visit(expr->target());
- if (var == NULL && prop == NULL) return; // Throw reference error.
+ if (var == NULL && prop == NULL) return; // Throw reference error.
PrintF(" = ");
// For compound assignments, print the left-hand side again and the
// corresponding binary operator.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698