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; } |