summaryrefslogtreecommitdiff
path: root/utils/TableGen/DAGISelMatcherGen.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-28 02:31:26 +0000
committerChris Lattner <sabre@nondot.org>2010-02-28 02:31:26 +0000
commite86097af5598e44727875f00e492d43c978239be (patch)
tree079307e8dd552052a12f9d35a526cda038c772c4 /utils/TableGen/DAGISelMatcherGen.cpp
parent6ac33b4533889f132ba10c812ae574d779c827b9 (diff)
downloadllvm-e86097af5598e44727875f00e492d43c978239be.tar.gz
llvm-e86097af5598e44727875f00e492d43c978239be.tar.bz2
llvm-e86097af5598e44727875f00e492d43c978239be.tar.xz
add infrastructure to support forming selectnodeto. Not used yet
because I have to go on another detour first. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97362 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/TableGen/DAGISelMatcherGen.cpp')
-rw-r--r--utils/TableGen/DAGISelMatcherGen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/TableGen/DAGISelMatcherGen.cpp b/utils/TableGen/DAGISelMatcherGen.cpp
index cae2dfbc59..ee385074a9 100644
--- a/utils/TableGen/DAGISelMatcherGen.cpp
+++ b/utils/TableGen/DAGISelMatcherGen.cpp
@@ -746,10 +746,10 @@ EmitResultInstructionAsOperand(const TreePatternNode *N,
// (add (load)) -> add32rm is ok because result #0 is the result and result #1
// is new.
AddMatcher(new EmitNodeMatcher(II.Namespace+"::"+II.TheDef->getName(),
- ResultVTs.data(), ResultVTs.size(),
- InstOps.data(), InstOps.size(),
- NodeHasChain, TreeHasInFlag,
- NodeHasMemRefs,NumFixedArityOperands));
+ ResultVTs.data(), ResultVTs.size(),
+ InstOps.data(), InstOps.size(),
+ NodeHasChain, TreeHasInFlag,
+ NodeHasMemRefs, NumFixedArityOperands));
// The non-chain and non-flag results of the newly emitted node get recorded.
for (unsigned i = 0, e = ResultVTs.size(); i != e; ++i) {