[llvm-commits] CVS: llvm/include/llvm/CodeGen/SelectionDAG.h
Chris Lattner
lattner at cs.uiuc.edu
Fri Sep 2 12:35:53 PDT 2005
Changes in directory llvm/include/llvm/CodeGen:
SelectionDAG.h updated: 1.59 -> 1.60
---
Log message:
add a map for nullary ops
---
Diffs of the changes: (+1 -0)
SelectionDAG.h | 1 +
1 files changed, 1 insertion(+)
Index: llvm/include/llvm/CodeGen/SelectionDAG.h
diff -u llvm/include/llvm/CodeGen/SelectionDAG.h:1.59 llvm/include/llvm/CodeGen/SelectionDAG.h:1.60
--- llvm/include/llvm/CodeGen/SelectionDAG.h:1.59 Wed Aug 31 19:19:25 2005
+++ llvm/include/llvm/CodeGen/SelectionDAG.h Fri Sep 2 14:35:42 2005
@@ -356,6 +356,7 @@
SDOperand N4, ISD::CondCode CC);
// Maps to auto-CSE operations.
+ std::map<std::pair<unsigned, MVT::ValueType>, SDNode *> NullaryOps;
std::map<std::pair<unsigned, std::pair<SDOperand, MVT::ValueType> >,
SDNode *> UnaryOps;
std::map<std::pair<unsigned, std::pair<SDOperand, SDOperand> >,
More information about the llvm-commits
mailing list