diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-06-21 05:10:24 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-06-21 05:10:24 +0000 |
commit | e61e4bfd8759061ede657a43e630c69d677b44fd (patch) | |
tree | 822c4f01c8b7b560925fe36cb70310ed62209350 /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 73575c4d5ee20081768a0876f8bdfb922f09324f (diff) | |
download | bcm5719-llvm-e61e4bfd8759061ede657a43e630c69d677b44fd.tar.gz bcm5719-llvm-e61e4bfd8759061ede657a43e630c69d677b44fd.zip |
Replace silly uses of 'signed' with 'int'
llvm-svn: 273244
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 8e823a37ee3..e9e68b72fa6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -4692,7 +4692,7 @@ SDValue DAGCombiner::visitSRA(SDNode *N) { TruncVT = EVT::getVectorVT(Ctx, TruncVT, VT.getVectorNumElements()); // Determine the residual right-shift amount. - signed ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); + int ShiftAmt = N1C->getZExtValue() - N01C->getZExtValue(); // If the shift is not a no-op (in which case this should be just a sign // extend already), the truncated to type is legal, sign_extend is legal |