We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f10c30f commit cf01c36Copy full SHA for cf01c36
python/renderlayer.py
@@ -389,7 +389,11 @@ def apply_to_linear_view_object(
389
:return: Updated set of lines to display in Linear View
390
"""
391
# Hack: HLIL bodies don't have basic blocks
392
- if obj.identifier.name == "Body":
+ if obj.identifier.name in [
393
+ "HLIL Function Body",
394
+ "HLIL SSA Function Body",
395
+ "Language Representation Function Body"
396
+ ]:
397
self.apply_to_hlil_body(lines[0].function, lines)
398
return lines
399
0 commit comments