Skip to content

Commit

Permalink
Don't assert in getZeroFlag
Browse files Browse the repository at this point in the history
  • Loading branch information
hainest committed Oct 30, 2023
1 parent 33f2662 commit 29ccf30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/src/registers/MachRegister.C
Expand Up @@ -445,11 +445,11 @@ namespace Dyninst {
case Arch_ppc32: return ppc32::cr0e;
case Arch_ppc64: return ppc64::cr0e;
case Arch_aarch64: return aarch64::z;
case Arch_aarch32: assert(!"Not implemented"); break;
case Arch_aarch32:
case Arch_cuda:
case Arch_amdgpu_gfx908:
case Arch_amdgpu_gfx90a:
case Arch_amdgpu_gfx940: assert(0); break;
case Arch_amdgpu_gfx940:
case Arch_none: return InvalidReg;
default: return InvalidReg;
}
Expand Down

0 comments on commit 29ccf30

Please sign in to comment.