diff options
author | Chris Lattner <sabre@nondot.org> | 2010-04-20 06:28:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-04-20 06:28:43 +0000 |
commit | 9dc68d31fdc1a9d0db46732046f7260d3344f8a6 (patch) | |
tree | cf9b76b95a21eecdc454f4dcdab14124959a3e42 /llvm/utils/TableGen/CodeGenDAGPatterns.cpp | |
parent | 5100367ff39c47492b7ceae3a3ee3b28372fff6e (diff) | |
download | bcm5719-llvm-9dc68d31fdc1a9d0db46732046f7260d3344f8a6.tar.gz bcm5719-llvm-9dc68d31fdc1a9d0db46732046f7260d3344f8a6.zip |
DAGInstruction::ImpOperands is dead after my recent tblgen work, zap it.
llvm-svn: 101880
Diffstat (limited to 'llvm/utils/TableGen/CodeGenDAGPatterns.cpp')
-rw-r--r-- | llvm/utils/TableGen/CodeGenDAGPatterns.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp index d2c0195c6dc..5cb6506d5d4 100644 --- a/llvm/utils/TableGen/CodeGenDAGPatterns.cpp +++ b/llvm/utils/TableGen/CodeGenDAGPatterns.cpp @@ -2297,10 +2297,8 @@ void CodeGenDAGPatterns::ParseInstructions() { // Create and insert the instruction. std::vector<Record*> ImpResults; - std::vector<Record*> ImpOperands; Instructions.insert(std::make_pair(Instrs[i], - DAGInstruction(0, Results, Operands, ImpResults, - ImpOperands))); + DAGInstruction(0, Results, Operands, ImpResults))); continue; // no pattern. } @@ -2447,7 +2445,7 @@ void CodeGenDAGPatterns::ParseInstructions() { // Create and insert the instruction. // FIXME: InstImpResults and InstImpInputs should not be part of // DAGInstruction. - DAGInstruction TheInst(I, Results, Operands, InstImpResults, InstImpInputs); + DAGInstruction TheInst(I, Results, Operands, InstImpResults); Instructions.insert(std::make_pair(I->getRecord(), TheInst)); // Use a temporary tree pattern to infer all types and make sure that the |