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 analyzer/opcode/opcode.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func (op *opcode) buildCallGraph(path string) (asmparser.CallGraph, error) {

// Select the correct parser based on architecture.
switch op.profile.GOARCH {
case "mips32", "mips64":
case "mips", "mips64":
callGraph, err = mips.NewParser().Parse(path)
default:
return nil, fmt.Errorf("unsupported GOARCH: %s", op.profile.GOARCH)
Expand Down
2 changes: 1 addition & 1 deletion analyzer/syscall/asm_syscall.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func (a *asmSyscallAnalyser) buildCallGraph(path string) (asmparser.CallGraph, e

// Select the correct parser based on architecture.
switch a.profile.GOARCH {
case "mips32", "mips64":
case "mips", "mips64":
callGraph, err = mips.NewParser().Parse(path)
default:
return nil, fmt.Errorf("unsupported GOARCH: %s", a.profile.GOARCH)
Expand Down
2 changes: 1 addition & 1 deletion profile/cannon/cannon-32.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
vm: Cannon
goos: linux
goarch: mips32
goarch: mips
ignored_functions:

allowed_opcodes:
Expand Down
Loading