1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

fix typo; NFC

llvm-svn: 265442
This commit is contained in:
Sanjay Patel 2016-04-05 19:27:39 +00:00
parent a1f70e5494
commit 7507aa6e81

View File

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