-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Actual fix #43
Actual fix #43
Conversation
@@ -29,6 +29,15 @@ AsmParser::ObjDumpParser::ObjDumpParser(const Filter &filter) : filter(filter) | |||
reproducible = false; | |||
} | |||
|
|||
void AsmParser::ObjDumpParser::updateSourceRefLineNumber() | |||
{ | |||
auto lineNum = atoi(this->state.text.c_str()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is source file name handled anywhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, line 410
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see, thanks!
@@ -29,6 +29,15 @@ AsmParser::ObjDumpParser::ObjDumpParser(const Filter &filter) : filter(filter) | |||
reproducible = false; | |||
} | |||
|
|||
void AsmParser::ObjDumpParser::updateSourceRefLineNumber() | |||
{ | |||
auto lineNum = atoi(this->state.text.c_str()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah I see, thanks!
oh, I just realized this will go wrong when filepaths have spaces |
No description provided.