Skip to content
Snippets Groups Projects
Commit eb2bc243 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

updated to handle arm32

parent 77b3868b
No related branches found
No related tags found
No related merge requests found
Pipeline #3853 failed
......@@ -80,8 +80,9 @@ class CreateFunctions_t
throw std::runtime_error("Cannot handle ELF class");
const auto my_cs_arch =
machine_type == mtX86_64 ? CS_ARCH_X86 :
machine_type == mtI386 ? CS_ARCH_X86 :
machine_type == mtX86_64 ? CS_ARCH_X86 :
machine_type == mtI386 ? CS_ARCH_X86 :
machine_type == mtArm32 ? CS_ARCH_ARM :
machine_type == mtAarch64 ? CS_ARCH_ARM64 :
throw std::runtime_error("Cannot handle architecture");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment