[C++11] Replace llvm::tie with std::tie.
The old implementation is no longer needed in C++11. llvm-svn: 202644
This commit is contained in:
@@ -334,7 +334,7 @@ static bool matchVectorSplittingReduction(const ExtractElementInst *ReduxRoot,
|
||||
|
||||
Value *NextRdxOp;
|
||||
ShuffleVectorInst *Shuffle;
|
||||
tie(NextRdxOp, Shuffle) = getShuffleAndOtherOprd(BinOp);
|
||||
std::tie(NextRdxOp, Shuffle) = getShuffleAndOtherOprd(BinOp);
|
||||
|
||||
// Check the current reduction operation and the shuffle use the same value.
|
||||
if (Shuffle == 0)
|
||||
|
||||
Reference in New Issue
Block a user