diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-14 17:11:23 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-14 17:11:23 +0000 |
commit | 0e026729aef35523e4f8d6124a569dceb4286bbb (patch) | |
tree | 7a85b293155ee85a67487da77287ab000a1dbf03 /lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | |
parent | 046fe6b6ba9851d3b8fed164493a54db3ac107e6 (diff) |
Move this assert out of SelectionDAGISel into FunctionLoweringInfo, and
drop the redundant #ifndef NDEBUG.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101261 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 8583336df6..1438fe2b5d 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -221,11 +221,6 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) { // emitting the code for the block. RegInfo->EmitLiveInCopies(MF->begin(), TRI, TII); -#ifndef NDEBUG - assert(FuncInfo->CatchInfoFound.size() == FuncInfo->CatchInfoLost.size() && - "Not all catch info was assigned to a landing pad!"); -#endif - // Release function-specific state. SDB and CurDAG are already cleared // at this point. FuncInfo->clear(); |