Skip to content

Commit

Permalink
Add support for llvm objdump
Browse files Browse the repository at this point in the history
  • Loading branch information
ramang-unity committed May 2, 2024
1 parent 4bba213 commit d94ba08
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/objdump/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit d94ba08

Please sign in to comment.