File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
lib/SILOptimizer/Mandatory Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -385,21 +385,21 @@ describe(SILInstruction *blame) {
385
385
386
386
// if we have no callee info, all we know is it's a call involving self.
387
387
if (!callee)
388
- return { " a call involving" , " " , ctx.Id_self } ;
388
+ return std::make_tuple ( " a call involving" , " " , ctx.Id_self ) ;
389
389
390
- return {
390
+ return std::make_tuple (
391
391
verbForInvoking (callee),
392
392
callee->getDescriptiveKindName (callee->getDescriptiveKind ()),
393
393
callee->getName ()
394
- } ;
394
+ ) ;
395
395
}
396
396
397
397
// handle non-call blames
398
398
switch (blame->getKind ()) {
399
399
case SILInstructionKind::CopyValueInst:
400
- return { " making a copy of" , " " , ctx.Id_self } ;
400
+ return std::make_tuple ( " making a copy of" , " " , ctx.Id_self ) ;
401
401
default :
402
- return { " this use of" , " " , ctx.Id_self } ;
402
+ return std::make_tuple ( " this use of" , " " , ctx.Id_self ) ;
403
403
}
404
404
}
405
405
You can’t perform that action at this time.
0 commit comments