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

Unified Diff: src/IceGlobalInits.h

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: Use constexpr inline functions instead of macros 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
Index: src/IceGlobalInits.h
diff --git a/src/IceGlobalInits.h b/src/IceGlobalInits.h
index cd66500362742f4fdc96b56026aec7a5ae3d8c13..cb48310897db82df18d5f49afe10cdccb967ab8e 100644
--- a/src/IceGlobalInits.h
+++ b/src/IceGlobalInits.h
@@ -66,7 +66,7 @@ public:
/// Prints out the global declaration.
virtual void dump(GlobalContext *Ctx, Ostream &Stream) const = 0;
void dump(Ostream &Stream) const {
- if (!ALLOW_DUMP)
+ if (!buildAllowsDump())
return;
GlobalContext *const Ctx = nullptr;
dump(Ctx, Stream);
@@ -153,7 +153,7 @@ public:
virtual SizeT getNumBytes() const = 0;
virtual void dump(GlobalContext *Ctx, Ostream &Stream) const = 0;
void dump(Ostream &Stream) const {
- if (ALLOW_DUMP)
+ if (buildAllowsDump())
dump(nullptr, Stream);
}
virtual void dumpType(Ostream &Stream) const;
« src/IceDefs.h ('K') | « src/IceGlobalContext.cpp ('k') | src/IceGlobalInits.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698