[llvm-commits] CVS: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
Evan Cheng
evan.cheng at apple.com
Wed May 24 17:24:44 PDT 2006
Changes in directory llvm/lib/Target/ARM:
ARMISelDAGToDAG.cpp updated: 1.6 -> 1.7
---
Log message:
Assert if InflightSet is not cleared after instruction selecting a BB.
---
Diffs of the changes: (+1 -0)
ARMISelDAGToDAG.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
diff -u llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.6 llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.7
--- llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp:1.6 Wed May 24 15:46:25 2006
+++ llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp Wed May 24 19:24:28 2006
@@ -160,6 +160,7 @@
DEBUG(BB->dump());
DAG.setRoot(SelectRoot(DAG.getRoot()));
+ assert(InFlightSet.empty() && "ISel InFlightSet has not been emptied!");
CodeGenMap.clear();
HandleMap.clear();
ReplaceMap.clear();
More information about the llvm-commits
mailing list