Restore breaks lost in shuffling GetSoftwareBreakpointTrapOpcode

llvm-svn: 237313
This commit is contained in:
Ed Maste 2015-05-13 23:09:43 +00:00
parent 8f27ae46b8
commit af0494f158
1 changed files with 3 additions and 0 deletions

View File

@ -597,12 +597,14 @@ PlatformFreeBSD::GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite
trap_opcode = g_aarch64_opcode;
trap_opcode_size = sizeof(g_aarch64_opcode);
}
break;
case llvm::Triple::arm:
{
static const uint8_t g_arm_opcode[] = { 0xfe, 0xde, 0xff, 0xe7 };
trap_opcode = g_arm_opcode;
trap_opcode_size = sizeof(g_arm_opcode);
}
break;
case llvm::Triple::mips64:
{
static const uint8_t g_hex_opcode[] = { 0x00, 0x00, 0x00, 0x0d };
@ -617,6 +619,7 @@ PlatformFreeBSD::GetSoftwareBreakpointTrapOpcode (Target &target, BreakpointSite
trap_opcode = g_ppc_opcode;
trap_opcode_size = sizeof(g_ppc_opcode);
}
break;
case llvm::Triple::x86:
case llvm::Triple::x86_64:
{