Move this assert out of SelectionDAGISel into FunctionLoweringInfo, and
authorDan Gohman <gohman@apple.com>
Wed, 14 Apr 2010 17:11:23 +0000 (17:11 +0000)
committerDan Gohman <gohman@apple.com>
Wed, 14 Apr 2010 17:11:23 +0000 (17:11 +0000)
drop the redundant #ifndef NDEBUG.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101261 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index d7ed46a08adf18de0cb2d74c46178b1e52804513..43cc6603a4e474d506e78e3d49958037c9c62955 100644 (file)
@@ -243,6 +243,9 @@ void FunctionLoweringInfo::set(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();
index 8583336df662789be9e3deee18371fd0b5e5a817..1438fe2b5d439af81410bd6c094adc07d734aff5 100644 (file)
@@ -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();