mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Track uptstream LLVM API change: llvm::tie() was removed, use std::tie() instead
Swift SVN r14573
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user