From d94ba0805888910b4a112b804ed53f6e8f7fb179 Mon Sep 17 00:00:00 2001 From: Raman Grewal Date: Thu, 2 May 2024 09:57:52 -0400 Subject: [PATCH] Add support for llvm objdump --- src/objdump/parser.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/objdump/parser.cpp b/src/objdump/parser.cpp index 5069fc2..2d9fa9a 100644 --- a/src/objdump/parser.cpp +++ b/src/objdump/parser.cpp @@ -307,6 +307,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();