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

Unified Diff: src/IceConverter.cpp

Issue 589003002: Subzero: Refactor tracking of Defs and block-local Variables. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Indicate args as non-multidef Created 6 years, 3 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 | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('j') | src/IceOperand.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceConverter.cpp
diff --git a/src/IceConverter.cpp b/src/IceConverter.cpp
index ec797c19144055955d68ea31958e737f385b5aa7..808245d5a1531a0e33017ac5d228ebca7744f576 100644
--- a/src/IceConverter.cpp
+++ b/src/IceConverter.cpp
@@ -132,8 +132,7 @@ private:
if (IceTy == Ice::IceType_void)
return NULL;
if (VarMap.find(V) == VarMap.end()) {
- assert(CurrentNode);
jvoung (off chromium) 2014/09/22 17:07:29 It seems like CurrentNode is not read anymore, so
Jim Stichnoth 2014/09/22 21:00:46 Nice! Done.
- VarMap[V] = Func->makeVariable(IceTy, CurrentNode, V->getName());
+ VarMap[V] = Func->makeVariable(IceTy, V->getName());
}
return VarMap[V];
}
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceDefs.h » ('j') | src/IceOperand.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698