diff options
author | Davide Italiano <davide@freebsd.org> | 2015-10-23 00:17:40 +0000 |
---|---|---|
committer | Davide Italiano <davide@freebsd.org> | 2015-10-23 00:17:40 +0000 |
commit | fbb958c24b79be477c99c46049a507d3435dab14 (patch) | |
tree | 76ca307824004099514251b2927d30238dd666c3 /llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | |
parent | 8826519e2af08b79944e187aadf11e7a92cbe039 (diff) | |
download | bcm5719-llvm-fbb958c24b79be477c99c46049a507d3435dab14.tar.gz bcm5719-llvm-fbb958c24b79be477c99c46049a507d3435dab14.zip |
[CodeGen] Remove usage of NDEBUG in header.
Moreover, this seems unused.
llvm-svn: 251081
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp index bc97d63582f..c3744f7494f 100644 --- a/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp @@ -341,16 +341,9 @@ void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf, /// FunctionLoweringInfo to an empty state, ready to be used for a /// different function. void FunctionLoweringInfo::clear() { - assert(CatchInfoFound.size() == CatchInfoLost.size() && - "Not all catch info was assigned to a landing pad!"); - MBBMap.clear(); ValueMap.clear(); StaticAllocaMap.clear(); -#ifndef NDEBUG - CatchInfoLost.clear(); - CatchInfoFound.clear(); -#endif LiveOutRegInfo.clear(); VisitedBBs.clear(); ArgDbgValues.clear(); |