diff options
author | Qi Zhao <zhaoqi01@loongson.cn> | 2025-09-15 16:31:25 +0800 |
---|---|---|
committer | Qi Zhao <zhaoqi01@loongson.cn> | 2025-09-15 16:31:25 +0800 |
commit | 5548303e0f7c67f4b4f02dceae1c07c8be4fde2b (patch) | |
tree | 4648999c18fbd280f3325c6455519363c5df80f4 | |
parent | a091f3635bffa3ab37f37232a30fd8563130eb7b (diff) | |
download | llvm-users/zhaoqi5/fix-lldb.zip llvm-users/zhaoqi5/fix-lldb.tar.gz llvm-users/zhaoqi5/fix-lldb.tar.bz2 |
clang formatusers/zhaoqi5/fix-lldb
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 45c8f0a..406d7d0 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -2122,7 +2122,7 @@ ObjectFileELF::ParseSymbols(Symtab *symtab, user_id_t start_id, // LoongArch64 always uses symbols for relocations, so temporary symbols // starting with ".L" should be preserved. if (llvm::StringRef(symbol_name).starts_with(".L") && - arch.GetMachine() != llvm::Triple::loongarch64) + arch.GetMachine() != llvm::Triple::loongarch64) continue; // No need to add non-section symbols that have no names if (symbol.getType() != STT_SECTION && |