diff options
author | Sean Callanan <scallanan@apple.com> | 2011-11-01 17:33:54 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2011-11-01 17:33:54 +0000 |
commit | ea685aeb3c7ff6a6529a1f5476c850e3898f7ae2 (patch) | |
tree | d6d0c76815b5b70fc1544b69af42be26b564aa0c /lldb/source/Expression/IRForTarget.cpp | |
parent | 8d365a1749651cef8367073f8d58624e2e691744 (diff) | |
download | bcm5719-llvm-ea685aeb3c7ff6a6529a1f5476c850e3898f7ae2.tar.gz bcm5719-llvm-ea685aeb3c7ff6a6529a1f5476c850e3898f7ae2.zip |
Minor logging changes: added logging right before
the expression makes it to the JIT, and made some
logging only appear in verbose mode.
llvm-svn: 143467
Diffstat (limited to 'lldb/source/Expression/IRForTarget.cpp')
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 029d4f52482..1ed6791314b 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -2556,7 +2556,7 @@ IRForTarget::runOnModule (Module &llvm_module) } } - if (log) + if (log && log->GetVerbose()) { std::string s; raw_string_ostream oss(s); @@ -2669,7 +2669,7 @@ IRForTarget::runOnModule (Module &llvm_module) return false; } - if (log) + if (log && log->GetVerbose()) { std::string s; raw_string_ostream oss(s); |