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

Unified Diff: src/IceClFlags.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/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index 3b9b0067601d54600902de4ca5dead4be7fa563d..d51cf536dc78dd37fc97a66374035a96be78e632 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -62,7 +62,7 @@ public:
bool getDisableTranslation() const { return DisableTranslation; }
void setDisableTranslation(bool NewValue) { DisableTranslation = NewValue; }
- bool getDumpStats() const { return ALLOW_DUMP && DumpStats; }
+ bool getDumpStats() const { return buildAllowsDump() && DumpStats; }
void setDumpStats(bool NewValue) { DumpStats = NewValue; }
bool getEnableBlockProfile() const { return EnableBlockProfile; }
@@ -74,7 +74,7 @@ public:
bool getGenerateUnitTestMessages() const {
// Note: If dump routines have been turned off, the error messages
// will not be readable. Hence, turn off.
- return !ALLOW_DUMP || GenerateUnitTestMessages;
+ return !buildAllowsDump() || GenerateUnitTestMessages;
}
void setGenerateUnitTestMessages(bool NewValue) {
GenerateUnitTestMessages = NewValue;
@@ -97,7 +97,7 @@ public:
SubzeroTimingEnabled = NewValue;
}
- bool getTimeEachFunction() const { return ALLOW_DUMP && TimeEachFunction; }
+ bool getTimeEachFunction() const { return buildAllowsDump() && TimeEachFunction; }
void setTimeEachFunction(bool NewValue) { TimeEachFunction = NewValue; }
bool getUseSandboxing() const { return UseSandboxing; }
@@ -131,7 +131,7 @@ public:
}
VerboseMask getVerbose() const {
- return ALLOW_DUMP ? VMask : (VerboseMask)IceV_None;
+ return buildAllowsDump() ? VMask : (VerboseMask)IceV_None;
}
void setVerbose(VerboseMask NewValue) { VMask = NewValue; }

Powered by Google App Engine
This is Rietveld 408576698