From 54c01057b68d2a0e565f289cfa9edb8cca7f5980 Mon Sep 17 00:00:00 2001 From: Arthur Eubanks Date: Wed, 6 Jan 2021 11:41:09 -0800 Subject: [PATCH] Fix non-assert builds after D93828 --- llvm/lib/Analysis/LazyCallGraph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Analysis/LazyCallGraph.cpp b/llvm/lib/Analysis/LazyCallGraph.cpp index beb8b7f0b1d8..ef16f94822a3 100644 --- a/llvm/lib/Analysis/LazyCallGraph.cpp +++ b/llvm/lib/Analysis/LazyCallGraph.cpp @@ -1791,8 +1791,8 @@ void LazyCallGraph::addSplitRefRecursiveFunctions( assert(!N1->lookup(N2)->isCall() && "Edges between new functions must be ref edges"); } -#endif } +#endif } LazyCallGraph::Node &LazyCallGraph::insertInto(Function &F, Node *&MappedN) {