From 3c92a7aac10e986f33ab3cadaf7c8ba9d8cb5a47 Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Sat, 2 Aug 2014 10:29:34 +0000 Subject: [PATCH] [x86] Fix a few typos in my comments spotted in passing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214626 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelLowering.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 26e0e2ea26b..1b65e741533 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -18734,7 +18734,7 @@ static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef Mask, return true; } - // Use the float domain if the operand type is a floatingc point type. + // Use the float domain if the operand type is a floating point type. bool FloatDomain = VT.isFloatingPoint(); // If we don't have access to VEX encodings, the generic PSHUF instructions @@ -18745,8 +18745,8 @@ static bool combineX86ShuffleChain(SDValue Op, SDValue Root, ArrayRef Mask, // shuffle instructions freely as they can copy due to the extra register // operand. if (Subtarget->hasAVX()) { - // We have both floatincg point and integer variants of shuffles that dup - // either tho low or high half of the vector. + // We have both floating point and integer variants of shuffles that dup + // either the low or high half of the vector. if (Mask.equals(0, 0) || Mask.equals(1, 1)) { bool Lo = Mask.equals(0, 0); unsigned Shuffle = FloatDomain ? (Lo ? X86ISD::MOVLHPS : X86ISD::MOVHLPS)