The switch statement would never fire due to the preceding break statement. Also, the switch statement has a default label with no case labels. Simplified the code, and allow it to execute.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216346
91177308-0d34-0410-b5e6-
96231b3b80d8
break;
case MachO::CPU_SUBTYPE_X86_64_H:
outs() << " Haswell";
- break;
- switch (cpusubtype & ~MachO::CPU_SUBTYPE_MASK) {
- default:
- outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
- break;
- }
+ outs() << format(" %10d", cpusubtype & ~MachO::CPU_SUBTYPE_MASK);
break;
case MachO::CPU_TYPE_ARM:
outs() << " ARM";