We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd7f5ec commit e34dc59Copy full SHA for e34dc59
lib/SILOptimizer/Analysis/RegionAnalysis.cpp
@@ -2109,6 +2109,7 @@ class PartitionOpTranslator {
2109
}
2110
2111
case TranslationSemantics::Asserting:
2112
+ llvm::errs() << "BannedInst: " << *inst;
2113
llvm::report_fatal_error(
2114
"transfer-non-sendable: Found banned instruction?!");
2115
return;
@@ -2119,6 +2120,7 @@ class PartitionOpTranslator {
2119
2120
return ::isNonSendableType(value->getType(), inst->getFunction());
2121
}))
2122
2123
+ llvm::errs() << "BadInst: " << *inst;
2124
2125
"transfer-non-sendable: Found instruction that is not allowed to "
2126
"have non-Sendable parameters with such parameters?!");
0 commit comments