1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-26 04:32:44 +01:00

[FunctionAttrs] Add comment and clarify assertion message; NFC

llvm-svn: 252389
This commit is contained in:
Sanjoy Das 2015-11-07 01:56:07 +00:00
parent a80c5fc02d
commit c550b2c217

View File

@ -457,7 +457,12 @@ determinePointerReadAttrs(Argument *A,
unsigned UseIndex = std::distance(CS.arg_begin(), U);
assert(UseIndex < CS.data_operands_size() && "Non-argument use?");
// U cannot be the callee operand use: since we're exploring the
// transitive uses of an Argument, having such a use be a callee would
// imply the CallSite is an indirect call or invoke; and we'd take the
// early exit above.
assert(UseIndex < CS.data_operands_size() &&
"Data operand use expected!");
bool IsOperandBundleUse = UseIndex >= CS.getNumArgOperands();