diff options
| author | Vasileios Porpodas <vporpodas@google.com> | 2023-02-14 14:28:02 -0800 |
|---|---|---|
| committer | Vasileios Porpodas <vporpodas@google.com> | 2023-02-14 14:29:42 -0800 |
| commit | cb5f239363a3c94db5425c105fcd45e77d2a16a9 (patch) | |
| tree | b4c56dfb0b7d7f3a90cc16cdb8a4f510f01dec13 /lldb/source/Expression/IRExecutionUnit.cpp | |
| parent | cafb1c1cb24179bdf4361bf510590b4ea4e52135 (diff) | |
| download | llvm-cb5f239363a3c94db5425c105fcd45e77d2a16a9.tar.gz llvm-cb5f239363a3c94db5425c105fcd45e77d2a16a9.tar.bz2 llvm-cb5f239363a3c94db5425c105fcd45e77d2a16a9.zip | |
Revert "[NFC][IR] Make Module::getGlobalList() private"
This reverts commit ed3e3ee9e30dfbffd2170a770a49b36a7f444916.
Diffstat (limited to 'lldb/source/Expression/IRExecutionUnit.cpp')
| -rw-r--r-- | lldb/source/Expression/IRExecutionUnit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Expression/IRExecutionUnit.cpp b/lldb/source/Expression/IRExecutionUnit.cpp index f3cf0f623d24..73a49e552e3d 100644 --- a/lldb/source/Expression/IRExecutionUnit.cpp +++ b/lldb/source/Expression/IRExecutionUnit.cpp @@ -406,7 +406,7 @@ void IRExecutionUnit::GetRunnableInfo(Status &error, lldb::addr_t &func_addr, } }; - for (llvm::GlobalVariable &global_var : m_module->globals()) { + for (llvm::GlobalVariable &global_var : m_module->getGlobalList()) { RegisterOneValue(global_var); } |
