Merge remote-tracking branch 'github/Github-732_caheckman_x64cspec'

This commit is contained in:
caheckman 2019-07-15 15:20:40 -04:00
commit ab7e57c521
15 changed files with 711 additions and 289 deletions

View file

@ -298,6 +298,12 @@ public class HighFunction extends PcodeSyntaxTree {
// Do nothing with override at the moment
parser.discardSubTree();
}
else if (subel.getName().equals("scope")) {
// This must be a subscope of the local scope
// Currently this can only hold static variables of the function
// which ghidra already knows about
parser.discardSubTree();
}
else {
throw new PcodeXMLException("Unknown tag in function: " + subel.getName());
}