File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2712,20 +2712,20 @@ void IRGenSILFunction::visitSILBasicBlock(SILBasicBlock *BB) {
2712
2712
llvm::errs ()
2713
2713
<< " Instruction missing on-stack pack metadata cleanups!\n " ;
2714
2714
I.print (llvm::errs ());
2715
- llvm::errs () << " \n In function" ;
2715
+ llvm::errs () << " \n In function: \n " ;
2716
2716
CurSILFn->print (llvm::errs ());
2717
- llvm::errs () << " Allocated the following on-stack pack metadata:" ;
2717
+ llvm::errs () << " Allocated the following on-stack pack metadata:\n " ;
2718
2718
for (auto pair : OutstandingStackPackAllocs) {
2719
2719
StackAddress addr;
2720
2720
llvm::Value *shape;
2721
2721
uint8_t kind;
2722
2722
std::tie (addr, shape, kind) = pair;
2723
2723
switch ((GenericRequirement::Kind)kind) {
2724
2724
case GenericRequirement::Kind::MetadataPack:
2725
- llvm::errs () << " Metadata Pack: " ;
2725
+ llvm::errs () << " - Metadata Pack: " ;
2726
2726
break ;
2727
2727
case GenericRequirement::Kind::WitnessTablePack:
2728
- llvm::errs () << " Witness Table Pack: " ;
2728
+ llvm::errs () << " - Witness Table Pack: " ;
2729
2729
break ;
2730
2730
default :
2731
2731
llvm_unreachable (" bad requirement in stack pack alloc" );
You can’t perform that action at this time.
0 commit comments