diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-02 19:35:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-02 19:35:42 +0000 |
commit | ab2eb66f07689dc1698ace2182e77395254ad83d (patch) | |
tree | ce642a3f740b1708f38158a55d75f518f97bceb0 /include | |
parent | 839615a510c582ddcdb09a8e2934f30775daa032 (diff) | |
download | external_llvm-ab2eb66f07689dc1698ace2182e77395254ad83d.zip external_llvm-ab2eb66f07689dc1698ace2182e77395254ad83d.tar.gz external_llvm-ab2eb66f07689dc1698ace2182e77395254ad83d.tar.bz2 |
add a map for nullary ops
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23223 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 71bc267..895204d 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -356,6 +356,7 @@ private: 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> >, |