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

Unified Diff: src/typing-asm.cc

Issue 1795993002: Dropping shadowed variable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: delete the right one :-) Created 4 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/typing-asm.cc
diff --git a/src/typing-asm.cc b/src/typing-asm.cc
index ed5b02ef0f9aa8edb43531cd91e59bb7ee2ed150..99149a15d81b07268b5d1ddc9e1169571e061a6a 100644
--- a/src/typing-asm.cc
+++ b/src/typing-asm.cc
@@ -956,7 +956,6 @@ void AsmTyper::VisitCall(Call* expr) {
ZoneList<Expression*>* args = expr->arguments();
if (Type::Any()->Is(result_type)) {
// For foreign calls.
- ZoneList<Expression*>* args = expr->arguments();
for (int i = 0; i < args->length(); ++i) {
Expression* arg = args->at(i);
RECURSE(VisitWithExpectation(
« 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