From b90cfb1f12798e8cf6fb86a7323199819b78f32c Mon Sep 17 00:00:00 2001 From: ramang-unity <58699637+ramang-unity@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:02:17 -0500 Subject: [PATCH] Add support for llvm objdump (#40) --- src/objdump/parser.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/objdump/parser.cpp b/src/objdump/parser.cpp index ec5be0e..259cbe9 100644 --- a/src/objdump/parser.cpp +++ b/src/objdump/parser.cpp @@ -326,6 +326,10 @@ void AsmParser::ObjDumpParser::fromStream(std::istream &in) this->state.inAddress = false; this->state.inSourceRef = true; } + else if (c == ';') + { + continue; + } else if (c == ':') { this->address();