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 96fcb7a commit 0dff899Copy full SHA for 0dff899
lib/AST/Evaluator.cpp
@@ -88,7 +88,7 @@ void Evaluator::finishedRequest(const ActiveRequest &request) {
88
}
89
90
void Evaluator::diagnoseCycle(const ActiveRequest &request) {
91
- if (debugDumpCycles) {
+ if (true /* FIXME(NCG): Temporary hack, remove before flight */ || debugDumpCycles) {
92
const auto printIndent = [](llvm::raw_ostream &OS, unsigned indent) {
93
OS.indent(indent);
94
OS << "`--";
@@ -121,6 +121,7 @@ void Evaluator::diagnoseCycle(const ActiveRequest &request) {
121
122
OS << "\n";
123
124
+ assert(false) // FIXME(NCG): Temporary hack, remove before flight
125
126
request.diagnoseCycle(diags);
127
for (const auto &step : llvm::reverse(activeRequests)) {
0 commit comments