diff options
| author | Teresa Johnson <tejohnson@google.com> | 2017-12-16 00:29:31 +0000 |
|---|---|---|
| committer | Teresa Johnson <tejohnson@google.com> | 2017-12-16 00:29:31 +0000 |
| commit | 69b2de8466860e5e765bb64ebfda17defa0cfb37 (patch) | |
| tree | 9e8bd053bb1505aa504056c036cf4d1b32b774e3 /llvm/lib/Transforms/IPO | |
| parent | a1f6fba4d11031d4561a4aa94e553f19b2195a0e (diff) | |
| download | bcm5719-llvm-69b2de8466860e5e765bb64ebfda17defa0cfb37.tar.gz bcm5719-llvm-69b2de8466860e5e765bb64ebfda17defa0cfb37.zip | |
Fix NDEBUG build problem in r320895
Fix incorrect placement of #endif causing NDEBUG build failures.
llvm-svn: 320897
Diffstat (limited to 'llvm/lib/Transforms/IPO')
| -rw-r--r-- | llvm/lib/Transforms/IPO/FunctionImport.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/IPO/FunctionImport.cpp b/llvm/lib/Transforms/IPO/FunctionImport.cpp index 400fd4974eb..927c4f54b9c 100644 --- a/llvm/lib/Transforms/IPO/FunctionImport.cpp +++ b/llvm/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( |

