summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-10-31 23:51:19 +0000
committerGreg Clayton <gclayton@apple.com>2011-10-31 23:51:19 +0000
commit9d3d6886e6a6767434bc341a41df23ffc947606e (patch)
treef52a7be800507ec8e12fa7cf250a0297d828ce75 /lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
parent549f737453d1de96c61df8146edcff48b9b20877 (diff)
downloadbcm5719-llvm-9d3d6886e6a6767434bc341a41df23ffc947606e.tar.gz
bcm5719-llvm-9d3d6886e6a6767434bc341a41df23ffc947606e.zip
Fixed some warnings after enabling some stricter warnings in the Xcode project
settings. Also fixed an issue where we weren't creating anonymous namepaces correctly: <rdar://problem/10371295> llvm-svn: 143403
Diffstat (limited to 'lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp')
-rw-r--r--lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
index f729dbb4adc..1633d44f889 100644
--- a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
+++ b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
@@ -13185,11 +13185,11 @@ EmulateInstructionARM::SelectInstrSet (Mode arm_or_thumb)
{
default:
return false;
- eModeARM:
+ case eModeARM:
// Clear the T bit.
m_new_inst_cpsr &= ~MASK_CPSR_T;
break;
- eModeThumb:
+ case eModeThumb:
// Set the T bit.
m_new_inst_cpsr |= MASK_CPSR_T;
break;
OpenPOWER on IntegriCloud