Correct typo: Intructions -> Instructions

llvm-svn: 191972
This commit is contained in:
Ed Maste 2013-10-04 19:01:18 +00:00
parent b809a0e280
commit d45f88b4d0
3 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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)
{

View File

@ -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