[llvm] r265442 - fix typo; NFC
Sanjay Patel via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 5 12:27:40 PDT 2016
Author: spatel
Date: Tue Apr 5 14:27:39 2016
New Revision: 265442
URL: http://llvm.org/viewvc/llvm-project?rev=265442&view=rev
Log:
fix typo; NFC
Modified:
llvm/trunk/lib/Target/X86/X86TargetTransformInfo.cpp
Modified: llvm/trunk/lib/Target/X86/X86TargetTransformInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86TargetTransformInfo.cpp?rev=265442&r1=265441&r2=265442&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86TargetTransformInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86TargetTransformInfo.cpp Tue Apr 5 14:27:39 2016
@@ -1171,7 +1171,7 @@ int X86TTIImpl::getIntImmCost(const APIn
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);
}
More information about the llvm-commits
mailing list