You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/app/plugin/assembler/sleigh/SleighAssemblerBuilder.java
+3
Original file line number
Diff line number
Diff line change
@@ -570,6 +570,9 @@ else if (sym instanceof VarnodeSymbol) {
570
570
elseif (syminstanceofStartSymbol) {
571
571
// Ignore. We handle inst_start in semantic processing
572
572
}
573
+
elseif (syminstanceofOffsetSymbol) {
574
+
// Ignore. We handle inst_start in semantic processing
575
+
}
573
576
elseif (syminstanceofEndSymbol) {
574
577
// Ignore. We handle inst_next in semantic processing
Copy file name to clipboardExpand all lines: Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/app/plugin/processors/sleigh/expression/PatternExpression.java
+2
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ else if (nm.equals("operand_exp"))
Copy file name to clipboardExpand all lines: Ghidra/Framework/SoftwareModeling/src/main/java/ghidra/app/plugin/processors/sleigh/symbol/SymbolTable.java
+2
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,8 @@ else if (el.getName().equals("operand_sym_head"))
0 commit comments