File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
SwiftCompilerSources/Sources/Optimizer/InstructionSimplification Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -274,10 +274,10 @@ private extension AllocStackInst {
274
274
// `alloc_stack $any P` -> `alloc_stack $ConcreteType`
275
275
concreteType = cft
276
276
} else {
277
- // The instruction which defines the existential archetype must dominate the alloc_stack, because
278
- // after the transformation the alloc_stack will use the existential archetype.
279
- for openArchetypeOp in initExistential. typeDependentOperands {
280
- if !openArchetypeOp . value. triviallyDominates ( self ) {
277
+ // The instruction or argument which defines the archetype must dominate the alloc_stack
278
+ // because after the transformation, the alloc_stack will use the archetype.
279
+ for typeDependentOp in initExistential. typeDependentOperands {
280
+ if !typeDependentOp . value. triviallyDominates ( self ) {
281
281
return nil
282
282
}
283
283
}
You can’t perform that action at this time.
0 commit comments