summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Pilgrim <llvm-dev@redking.me.uk>2018-12-21 17:29:38 +0000
committerSimon Pilgrim <llvm-dev@redking.me.uk>2018-12-21 17:29:38 +0000
commit6a9ada8c026967f255704180d6238797ef28eddd (patch)
treea6ebc3ed4a6c30fe85fd4cef28f7a4bf2d82a716
parente2e73b221b36dc5547ba2ad4fdf515f7b900a911 (diff)
downloadbcm5719-llvm-6a9ada8c026967f255704180d6238797ef28eddd.tar.gz
bcm5719-llvm-6a9ada8c026967f255704180d6238797ef28eddd.zip
[SelectionDAG] Remove KnownBits output paramater version.
Completes the work started by @bogner in rL340594. llvm-svn: 349931
-rw-r--r--llvm/include/llvm/CodeGen/SelectionDAG.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/include/llvm/CodeGen/SelectionDAG.h b/llvm/include/llvm/CodeGen/SelectionDAG.h
index 8093fdab549..b7d7f7b0dfd 100644
--- a/llvm/include/llvm/CodeGen/SelectionDAG.h
+++ b/llvm/include/llvm/CodeGen/SelectionDAG.h
@@ -1432,18 +1432,6 @@ public:
KnownBits computeKnownBits(SDValue Op, const APInt &DemandedElts,
unsigned Depth = 0) const;
- /// \copydoc SelectionDAG::computeKnownBits(SDValue,unsigned)
- void computeKnownBits(SDValue Op, KnownBits &Known,
- unsigned Depth = 0) const {
- Known = computeKnownBits(Op, Depth);
- }
-
- /// \copydoc SelectionDAG::computeKnownBits(SDValue,const APInt&,unsigned)
- void computeKnownBits(SDValue Op, KnownBits &Known, const APInt &DemandedElts,
- unsigned Depth = 0) const {
- Known = computeKnownBits(Op, DemandedElts, Depth);
- }
-
/// Used to represent the possible overflow behavior of an operation.
/// Never: the operation cannot overflow.
/// Always: the operation will always overflow.
OpenPOWER on IntegriCloud