summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-13 02:37:19 +0000
committerChris Lattner <sabre@nondot.org>2005-04-13 02:37:19 +0000
commit1ccae666f596d5aeca5c9942995763600b622062 (patch)
tree6dee23693930afe31adc1faaf66666e14c61d3cb /include
parentea5761068956b157832d67bcc9d5e8ba706f545c (diff)
downloadllvm-1ccae666f596d5aeca5c9942995763600b622062.tar.gz
llvm-1ccae666f596d5aeca5c9942995763600b622062.tar.bz2
llvm-1ccae666f596d5aeca5c9942995763600b622062.tar.xz
Add a new helper method which returns the and that is equivalent to what
ZERO_EXTEND_INREG was. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21264 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAG.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h
index 4bb1739ec1..9ae69c256b 100644
--- a/include/llvm/CodeGen/SelectionDAG.h
+++ b/include/llvm/CodeGen/SelectionDAG.h
@@ -149,6 +149,10 @@ public:
SDOperand getSetCC(ISD::CondCode, MVT::ValueType VT,
SDOperand LHS, SDOperand RHS);
+ /// getZeroExtendInReg - Return the expression required to zero extend the Op
+ /// value assuming it was the smaller SrcTy value.
+ SDOperand getZeroExtendInReg(SDOperand Op, MVT::ValueType SrcTy);
+
/// getNode - Gets or creates the specified node.
///
SDOperand getNode(unsigned Opcode, MVT::ValueType VT);