} else if (fieldInstructionOpcodeSet.get(opcode)) {
boolean isLoad = (opcode == Constants.GETFIELD || opcode == Constants.GETSTATIC);
XField field = Hierarchy.findXField((FieldInstruction) ins, cpg);
if (field != null) {
if (isLoad) {
loadedFieldSet.addLoad(handle, field);
} else {
loadedFieldSet.addStore(handle, field);
}
}
}