summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSanjay Patel <spatel@rotateright.com>2016-04-05 19:27:39 +0000
committerSanjay Patel <spatel@rotateright.com>2016-04-05 19:27:39 +0000
commit4c7d094451ad052387170b57fab636d3a4d36038 (patch)
tree56066029d3e52ddb0f3bef91110ee6c019db8a40
parent811da0efbc239711580c35a9484c2f355a2e37e9 (diff)
downloadbcm5719-llvm-4c7d094451ad052387170b57fab636d3a4d36038.tar.gz
bcm5719-llvm-4c7d094451ad052387170b57fab636d3a4d36038.zip
fix typo; NFC
llvm-svn: 265442
-rw-r--r--llvm/lib/Target/X86/X86TargetTransformInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp b/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
index ba977eb7058..1bd1372c515 100644
--- a/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
+++ b/llvm/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);
}
OpenPOWER on IntegriCloud