From a48c4cca967ea7ff284f537462a54804df278082 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Sat, 16 Dec 2017 00:29:31 +0000 Subject: [PATCH] Fix NDEBUG build problem in r320895 Fix incorrect placement of #endif causing NDEBUG build failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@320897 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/IPO/FunctionImport.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Transforms/IPO/FunctionImport.cpp b/lib/Transforms/IPO/FunctionImport.cpp index 400fd4974eb..927c4f54b9c 100644 --- a/lib/Transforms/IPO/FunctionImport.cpp +++ b/lib/Transforms/IPO/FunctionImport.cpp @@ -444,8 +444,8 @@ static void dumpImportListForModule(StringRef ModulePath, DEBUG(dbgs() << " - " << Src.second.size() << " functions imported from " << SrcModName << "\n"); } -#endif } +#endif /// Compute all the imports for the given module in the Index. void llvm::ComputeCrossModuleImportForModule( -- 2.49.0