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

Unified Diff: src/IceTypes.cpp

Issue 1197863003: Subzero: Reduce the amount of #ifdef'd code. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Cleanup Created 5 years, 6 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/IceTimerTree.cpp ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceTypes.cpp
diff --git a/src/IceTypes.cpp b/src/IceTypes.cpp
index 793e1755928cf47f3d9bd9ea3736212a58abcfc0..f12f330a6b21187959bc605bbd296bd407eab5df 100644
--- a/src/IceTypes.cpp
+++ b/src/IceTypes.cpp
@@ -260,7 +260,7 @@ const char *typeString(Type Ty) {
}
void FuncSigType::dump(Ostream &Stream) const {
- if (!ALLOW_DUMP)
+ if (!BuildDefs::dump())
return;
Stream << ReturnType << " (";
bool IsFirst = true;
« no previous file with comments | « src/IceTimerTree.cpp ('k') | src/PNaClTranslator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698