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 /lldb/source | |
| parent | b809a0e2806224e14855dd4efd6fee3d4eecf423 (diff) | |
| download | bcm5719-llvm-d45f88b4d016a4be4da2bf95036098bdeb86a95e.tar.gz bcm5719-llvm-d45f88b4d016a4be4da2bf95036098bdeb86a95e.zip | |
Correct typo: Intructions -> Instructions
llvm-svn: 191972
Diffstat (limited to 'lldb/source')
| -rw-r--r-- | lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp | 2 | ||||
| -rw-r--r-- | lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h | 6 |
2 files changed, 4 insertions, 4 deletions
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 |

