[llvm-commits] CVS: llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
Evan Cheng
evan.cheng at apple.com
Wed May 24 17:24:43 PDT 2006
Changes in directory llvm/lib/Target/Alpha:
AlphaISelDAGToDAG.cpp updated: 1.41 -> 1.42
---
Log message:
Assert if InflightSet is not cleared after instruction selecting a BB.
---
Diffs of the changes: (+1 -0)
AlphaISelDAGToDAG.cpp | 1 +
1 files changed, 1 insertion(+)
Index: llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp
diff -u llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.41 llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.42
--- llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp:1.41 Wed May 24 15:46:25 2006
+++ llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp Wed May 24 19:24:28 2006
@@ -154,6 +154,7 @@
// Select target instructions for the DAG.
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