diff options
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 5b98e2b6acb..544c4bcaf19 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -2811,7 +2811,12 @@ IRForTarget::runOnModule (Module &llvm_module) return false; } + } + for (bbi = function->begin(); + bbi != function->end(); + ++bbi) + { if (!ResolveCalls(*bbi)) { if (log) |