mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Unbreak the build
My code clashed with some ilist iterator changes upstream. Fix by adding an explicit "&*" coercion. llvm-svn: 252392
This commit is contained in:
parent
c550b2c217
commit
62bf9f3dd6
@ -477,7 +477,7 @@ determinePointerReadAttrs(Argument *A,
|
||||
// to a operand bundle use, these cannot participate in the optimistic SCC
|
||||
// analysis. Instead, we model the operand bundle uses as arguments in
|
||||
// call to a function external to the SCC.
|
||||
if (!SCCNodes.count(std::next(F->arg_begin(), UseIndex)) ||
|
||||
if (!SCCNodes.count(&*std::next(F->arg_begin(), UseIndex)) ||
|
||||
IsOperandBundleUse) {
|
||||
|
||||
// The accessors used on CallSite here do the right thing for calls and
|
||||
|
Loading…
Reference in New Issue
Block a user