File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -562,15 +562,16 @@ void MemoryLifetimeVerifier::checkFunction(BitDataflow &dataFlow) {
562
562
require (expectedReturnBits & ~bs.data .exitSet ,
563
563
" indirect argument is not alive at function return" , term);
564
564
require (bs.data .exitSet & ~expectedReturnBits & nonTrivialLocations,
565
- " memory is initialized at function return but shouldn't" , term,
566
- /* excludeTrivialEnums*/ true );
565
+ " memory is initialized at function return but shouldn't be" ,
566
+ term,
567
+ /* excludeTrivialEnums*/ true );
567
568
break ;
568
569
case SILInstructionKind::ThrowInst:
569
570
require (expectedThrowBits & ~bs.data .exitSet ,
570
571
" indirect argument is not alive at throw" , term);
571
572
require (bs.data .exitSet & ~expectedThrowBits & nonTrivialLocations,
572
- " memory is initialized at throw but shouldn't" , term,
573
- /* excludeTrivialEnums*/ true );
573
+ " memory is initialized at throw but shouldn't be " , term,
574
+ /* excludeTrivialEnums*/ true );
574
575
break ;
575
576
default :
576
577
break ;
You can’t perform that action at this time.
0 commit comments