Skip to content
Snippets Groups Projects
Commit 1599b01d authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Don't include the filename in llvm-bcanalyzer results. (Closes: #905598)

parent 794f8152
No related branches found
No related tags found
No related merge requests found
Pipeline #15909 failed
......@@ -32,6 +32,11 @@ class LlvmBcAnalyzer(Command):
def cmdline(self):
return ['llvm-bcanalyzer', '-dump', self.path]
def filter(self, line):
if line.decode('utf-8', 'ignore').startswith('Summary of '):
return 'Summary:'
return line
class LlvmBcDisassembler(Command):
@tool_required('llvm-dis')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment