diff options
author | Ed Maste <emaste@freebsd.org> | 2013-10-04 19:01:18 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2013-10-04 19:01:18 +0000 |
commit | d45f88b4d016a4be4da2bf95036098bdeb86a95e (patch) | |
tree | 1e08baf6f2b1109e33dd499a55d3b4830516e884 | |
parent | b809a0e2806224e14855dd4efd6fee3d4eecf423 (diff) | |
download | bcm5719-llvm-d45f88b4d016a4be4da2bf95036098bdeb86a95e.tar.gz bcm5719-llvm-d45f88b4d016a4be4da2bf95036098bdeb86a95e.zip |
Correct typo: Intructions -> Instructions
llvm-svn: 191972
-rw-r--r-- | lldb/include/lldb/Core/EmulateInstruction.h | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h | 6 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lldb/include/lldb/Core/EmulateInstruction.h b/lldb/include/lldb/Core/EmulateInstruction.h index e9a165a5e40..19a3269ae37 100644 --- a/lldb/include/lldb/Core/EmulateInstruction.h +++ b/lldb/include/lldb/Core/EmulateInstruction.h @@ -394,7 +394,7 @@ public: // Mandatory overrides //---------------------------------------------------------------------- virtual bool - SupportsEmulatingIntructionsOfType (InstructionType inst_type) = 0; + SupportsEmulatingInstructionsOfType (InstructionType inst_type) = 0; virtual bool SetTargetTriple (const ArchSpec &arch) = 0; diff --git a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp index 2dd04dd8733..db03f453618 100644 --- a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp +++ b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp @@ -196,7 +196,7 @@ EmulateInstructionARM::GetPluginDescriptionStatic () EmulateInstruction * EmulateInstructionARM::CreateInstance (const ArchSpec &arch, InstructionType inst_type) { - if (EmulateInstructionARM::SupportsEmulatingIntructionsOfTypeStatic(inst_type)) + if (EmulateInstructionARM::SupportsEmulatingInstructionsOfTypeStatic(inst_type)) { if (arch.GetTriple().getArch() == llvm::Triple::arm) { diff --git a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h index b926dc0deb4..a3c294ae7a0 100644 --- a/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h +++ b/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h @@ -79,7 +79,7 @@ public: InstructionType inst_type); static bool - SupportsEmulatingIntructionsOfTypeStatic (InstructionType inst_type) + SupportsEmulatingInstructionsOfTypeStatic (InstructionType inst_type) { switch (inst_type) { @@ -149,9 +149,9 @@ public: // } virtual bool - SupportsEmulatingIntructionsOfType (InstructionType inst_type) + SupportsEmulatingInstructionsOfType (InstructionType inst_type) { - return SupportsEmulatingIntructionsOfTypeStatic (inst_type); + return SupportsEmulatingInstructionsOfTypeStatic (inst_type); } virtual bool |