diff options
| author | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-23 17:59:24 +0000 | 
|---|---|---|
| committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-23 17:59:24 +0000 | 
| commit | 9a9077fdade37dbfe6c9f8195dcc87001f733bc8 (patch) | |
| tree | 3f46d424cabbe6757c1bee65f221b677ba99753d | |
| parent | 28f00aab73730b8f74894fce1e82b8545c729ffb (diff) | |
| download | bcm5719-llvm-9a9077fdade37dbfe6c9f8195dcc87001f733bc8.tar.gz bcm5719-llvm-9a9077fdade37dbfe6c9f8195dcc87001f733bc8.zip  | |
FunctionImport: fix typo '#ifndef NDEBUG' instead of '#ifndef DEBUG'
llvm-svn: 290437
| -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 9489f8d699b..b122e8cb9e1 100644 --- a/llvm/lib/Transforms/IPO/FunctionImport.cpp +++ b/llvm/lib/Transforms/IPO/FunctionImport.cpp @@ -697,7 +697,7 @@ Expected<bool> FunctionImporter::importFunctions(        }      } -#ifndef DEBUG +#ifndef NDEBUG      // Note: this can't be done after `renameModuleForThinLTO` as it leaves the      // module in a state that does not pass the verifier (for example aliases      // pointing to available_externally functions).  | 

