diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-03-28 08:43:23 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-03-28 08:43:23 +0000 |
| commit | 8b09306a76d9260af846a841f414bb10833a52fa (patch) | |
| tree | 57408dc2bc12bc10ea571429a1d5c0e6c09f0a3b /lib/CodeGen | |
| parent | 569f6975d4d5beca60d90013b5e6931a30b828d6 (diff) | |
| download | external_llvm-8b09306a76d9260af846a841f414bb10833a52fa.zip external_llvm-8b09306a76d9260af846a841f414bb10833a52fa.tar.gz external_llvm-8b09306a76d9260af846a841f414bb10833a52fa.tar.bz2 | |
finally remove the immAllOnesV_bc/immAllZerosV_bc patterns
and those derived from them. These are obnoxious because
they were written as: PatLeaf<(bitconvert). Not having an
argument was foiling adding better type checking for operand
count matching up with what was required (in this case,
bitconvert always requires an operand!)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99759 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index 7ef051b..2169cee 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -1809,7 +1809,7 @@ MorphNode(SDNode *Node, unsigned TargetOpc, SDVTList VTList, // It is possible we're using MorphNodeTo to replace a node with no // normal results with one that has a normal result (or we could be // adding a chain) and the input could have flags and chains as well. - // In this case we need to shifting the operands down. + // In this case we need to shift the operands down. // FIXME: This is a horrible hack and broken in obscure cases, no worse // than the old isel though. int OldFlagResultNo = -1, OldChainResultNo = -1; |
