Track uptstream LLVM API change: llvm::tie() was removed, use std::tie() instead

Swift SVN r14573
This commit is contained in:
Dmitri Hrybenko
2014-03-02 13:53:19 +00:00
parent be7759b149
commit ba6548b072
6 changed files with 13 additions and 13 deletions

View File

@@ -1599,7 +1599,7 @@ void SILGenFunction::emitObjCDestructor(SILDeclRef dtor) {
Optional<SILValue> maybeReturnValue;
SILLocation returnLoc(loc);
llvm::tie(maybeReturnValue, returnLoc) = emitEpilogBB(loc);
std::tie(maybeReturnValue, returnLoc) = emitEpilogBB(loc);
if (!maybeReturnValue)
return;