Explorar o código

fix typo; NFC

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265442 91177308-0d34-0410-b5e6-96231b3b80d8
Sanjay Patel %!s(int64=9) %!d(string=hai) anos
pai
achega
ace0cc82e4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/Target/X86/X86TargetTransformInfo.cpp

+ 1 - 1
lib/Target/X86/X86TargetTransformInfo.cpp

@@ -1171,7 +1171,7 @@ int X86TTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) {
     int64_t Val = Tmp.getSExtValue();
     Cost += getIntImmCost(Val);
   }
-  // We need at least one instruction to materialze the constant.
+  // We need at least one instruction to materialize the constant.
   return std::max(1, Cost);
 }