1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[SLP] NFC: Fixed typo in comment

llvm-svn: 364237
This commit is contained in:
Vasileios Porpodas 2019-06-24 21:40:48 +00:00
parent 8fe94b1401
commit dbd03cf1a4

View File

@ -1252,7 +1252,7 @@ private:
/// \return the single \p OpIdx operand.
Value *getSingleOperand(unsigned OpIdx) const {
assert(OpIdx < Operands.size() && "Off bounds");
assert(!Operands[OpIdx].empty() && "No operand availabe");
assert(!Operands[OpIdx].empty() && "No operand available");
return Operands[OpIdx][0];
}