Allow physregs to occur in the dag with multiple types. Though I don't like

this, it is a requirement on PPC, which can have an f32 value in r3 at one
point in a function and a f64 value in r3 at another point.  :(

llvm-svn: 23160
This commit is contained in:
Chris Lattner 2005-08-30 22:38:05 +00:00
parent 8f8d539746
commit 1864662d5c
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ private:
std::map<std::pair<unsigned, std::pair<SDOperand, SDOperand> >,
SDNode *> BinaryOps;
std::vector<RegisterSDNode*> RegNodes;
std::map<std::pair<unsigned, MVT::ValueType>, RegisterSDNode*> RegNodes;
std::vector<CondCodeSDNode*> CondCodeNodes;
std::map<std::pair<SDOperand, std::pair<SDOperand, MVT::ValueType> >,