Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ghidra-versions.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
["12.0.3"]
["12.1.3","12.1.2"]
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package lol.fairplay.ghidraapple.analysis.passes.selectortrampoline
import ghidra.app.services.AbstractAnalyzer
import ghidra.app.services.AnalysisPriority
import ghidra.app.services.AnalyzerType
import ghidra.app.util.bin.format.objc2.ObjectiveC2_Constants
import ghidra.app.util.bin.format.objc.objc2.Objc2Constants
import ghidra.app.util.importer.MessageLog
import ghidra.program.database.SpecExtension
import ghidra.program.model.address.AddressSetView
Expand All @@ -26,7 +26,7 @@ class ARCFixupInstallerAnalyzer : AbstractAnalyzer(NAME, DESCRIPTION, AnalyzerTy
setSupportsOneTimeAnalysis()
}

override fun canAnalyze(program: Program?): Boolean = ObjectiveC2_Constants.isObjectiveC2(program)
override fun canAnalyze(program: Program?): Boolean = Objc2Constants.isObjectiveC2(program)

private fun createCallFixupXML(
name: String,
Expand Down
Loading