aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-09-02 19:35:42 +0000
committerChris Lattner <sabre@nondot.org>2005-09-02 19:35:42 +0000
commitab2eb66f07689dc1698ace2182e77395254ad83d (patch)
treece642a3f740b1708f38158a55d75f518f97bceb0 /include
parent839615a510c582ddcdb09a8e2934f30775daa032 (diff)
downloadexternal_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.h1
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> >,