| Index: src/IceTranslator.cpp
|
| diff --git a/src/IceTranslator.cpp b/src/IceTranslator.cpp
|
| index edaa74f869dacb5b0c7a5b213098225b6d80c2ee..dd6917418a861a4984d4a366585124daf626314e 100644
|
| --- a/src/IceTranslator.cpp
|
| +++ b/src/IceTranslator.cpp
|
| @@ -104,8 +104,8 @@ void Translator::lowerGlobals(
|
| llvm::OwningPtr<TargetGlobalInitLowering> GlobalLowering(
|
| TargetGlobalInitLowering::createLowering(Ctx->getTargetArch(), Ctx));
|
| bool DisableTranslation = Ctx->getFlags().DisableTranslation;
|
| - bool DumpGlobalVariables =
|
| - Ctx->isVerbose() && Ctx->getFlags().VerboseFocusOn.empty();
|
| + const bool DumpGlobalVariables =
|
| + ALLOW_DUMP && Ctx->isVerbose() && Ctx->getFlags().VerboseFocusOn.empty();
|
| Ostream &Stream = Ctx->getStrDump();
|
| const IceString &TranslateOnly = Ctx->getFlags().TranslateOnly;
|
| for (const Ice::VariableDeclaration *Global : VariableDeclarations) {
|
|
|