[Lldb-commits] [lldb] r191972 - Correct typo: Intructions -> Instructions

Ed Maste emaste at freebsd.org
Fri Oct 4 12:01:18 PDT 2013


Author: emaste
Date: Fri Oct  4 14:01:18 2013
New Revision: 191972

URL: http://llvm.org/viewvc/llvm-project?rev=191972&view=rev
Log:
Correct typo: Intructions -> Instructions

Modified:
    lldb/trunk/include/lldb/Core/EmulateInstruction.h
    lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
    lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h

Modified: lldb/trunk/include/lldb/Core/EmulateInstruction.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/EmulateInstruction.h?rev=191972&r1=191971&r2=191972&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/EmulateInstruction.h (original)
+++ lldb/trunk/include/lldb/Core/EmulateInstruction.h Fri Oct  4 14:01:18 2013
@@ -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;

Modified: lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp?rev=191972&r1=191971&r2=191972&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp (original)
+++ lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp Fri Oct  4 14:01:18 2013
@@ -196,7 +196,7 @@ EmulateInstructionARM::GetPluginDescript
 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)
         {

Modified: lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h?rev=191972&r1=191971&r2=191972&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h (original)
+++ lldb/trunk/source/Plugins/Instruction/ARM/EmulateInstructionARM.h Fri Oct  4 14:01:18 2013
@@ -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





More information about the lldb-commits mailing list