| Index: src/IceGlobalContext.cpp
|
| diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
|
| index cac253b643c2cb4e1737a419373316fbf0e980aa..fbdcd1bcc4e13f24bf5eaeaa4490f0d5754ed02a 100644
|
| --- a/src/IceGlobalContext.cpp
|
| +++ b/src/IceGlobalContext.cpp
|
| @@ -379,8 +379,9 @@ void GlobalContext::lowerJumpTables() { DataLowering->lowerJumpTables(); }
|
|
|
| void GlobalContext::lowerGlobals(const IceString &SectionSuffix) {
|
| TimerMarker T(TimerStack::TT_emitGlobalInitializers, this);
|
| - const bool DumpGlobalVariables = BuildDefs::dump() && Flags.getVerbose() &&
|
| - Flags.getVerboseFocusOn().empty();
|
| + const bool DumpGlobalVariables =
|
| + BuildDefs::dump() && (Flags.getVerbose() & Cfg::defaultVerboseMask()) &&
|
| + Flags.getVerboseFocusOn().empty();
|
| if (DumpGlobalVariables) {
|
| OstreamLocker L(this);
|
| Ostream &Stream = getStrDump();
|
|
|