diff options
author | Chris Lattner <sabre@nondot.org> | 2007-10-14 20:35:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-10-14 20:35:12 +0000 |
commit | 7a3c85583d523edb90aa957a02385254957c6e37 (patch) | |
tree | 90f2904c614a7f0ccbfca03d3205d40d7bb59769 | |
parent | fb5b11046bfc27e4c8388f4b3d7f1adc927f7fe6 (diff) |
remove misleading comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42970 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/CodeGen/SelectionDAG/LegalizeDAG.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp index 2396d792dd..42f1dd1dbd 100644 --- a/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp +++ b/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp @@ -4623,8 +4623,7 @@ bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt, unsigned VTBits = MVT::getSizeInBits(Op.getValueType()); unsigned NVTBits = MVT::getSizeInBits(NVT); - // Handle the case when Amt is an immediate. Other cases are currently broken - // and are disabled. + // Handle the case when Amt is an immediate. if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) { unsigned Cst = CN->getValue(); // Expand the incoming operand to be shifted, so that we have its parts |