File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/SILOptimizer/Mandatory Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1330,7 +1330,7 @@ bool DifferentiationTransformer::processLinearFunctionInst(
1330
1330
cast<SILInstruction>(lfi));
1331
1331
PrettyStackTraceSILFunction fnTrace (" ...in" , lfi->getFunction ());
1332
1332
LLVM_DEBUG ({
1333
- auto &s = getADDebugStream () << " Processing LinearFunctoinInst :\n " ;
1333
+ auto &s = getADDebugStream () << " Processing LinearFunctionInst :\n " ;
1334
1334
lfi->printInContext (s);
1335
1335
});
1336
1336
@@ -1385,8 +1385,8 @@ void Differentiation::run() {
1385
1385
if (auto *dfi = dyn_cast<DifferentiableFunctionInst>(&i)) {
1386
1386
context.getDifferentiableFunctionInstWorklist ().push_back (dfi);
1387
1387
} else if (auto *lfi = dyn_cast<LinearFunctionInst>(&i)) {
1388
- // If linear map transposition is not enable and an uncanonical
1389
- // `linear_function` instruction is encounter , emit a diagnostic.
1388
+ // If linear map transposition is not enabled and an uncanonical
1389
+ // `linear_function` instruction is encountered , emit a diagnostic.
1390
1390
// FIXME(SR-11850): Finish support for linear map transposition.
1391
1391
if (!EnableExperimentalLinearMapTransposition) {
1392
1392
if (!lfi->hasTransposeFunction ()) {
You can’t perform that action at this time.
0 commit comments