File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
lib/SILOptimizer/Analysis Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,12 @@ protocol LetterKind {
23
23
struct Letter : LetterKind {
24
24
let value : String
25
25
26
- var a : Int = 27
27
- var b : Int = 27
28
- var c : Int = 27
29
- var d : Int = 27
26
+ // Make this struct a large struct which does not fit into the 3-word
27
+ // existential inline buffer. Also provide an answer to ...
28
+ var a : Int = 42
29
+ var b : Int = 42
30
+ var c : Int = 42
31
+ var d : Int = 42
30
32
31
33
init ( _ value: String ) {
32
34
self . value = value
Original file line number Diff line number Diff line change @@ -718,7 +718,7 @@ bool swift::ArraySemanticsCall::replaceByAppendingValues(
718
718
auto FnTy = FnRef->getType ();
719
719
720
720
if (Vals.size () > 1 ) {
721
- // Create a call to reserveCapacityForAppend() to reserve apce for multiple
721
+ // Create a call to reserveCapacityForAppend() to reserve space for multiple
722
722
// elements.
723
723
FunctionRefInst *ReserveFnRef = Builder.createFunctionRef (Loc, ReserveFn);
724
724
SILFunctionType *ReserveFnTy =
You can’t perform that action at this time.
0 commit comments