aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-02-09 13:54:02 +0000
committerNikita Popov <nikita.ppv@gmail.com>2019-02-09 13:54:02 +0000
commitb58596f8637be9e1e266a39e3e905ec234d45c9a (patch)
tree8c8b240ede6faf57e37869ff88b0c3de9fdcde25 /include/llvm/CodeGen
parentfe7822a4a25c1648c962ddef3c405e3441abadf9 (diff)
downloadllvm-b58596f8637be9e1e266a39e3e905ec234d45c9a.tar.gz
Revert "[SelectionDAG] Extract [US]MULO expansion into TL method; NFC"
This reverts commit r353611. Triggers an assertion during the libcall expansion on ARM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@353612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/TargetLowering.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/TargetLowering.h b/include/llvm/CodeGen/TargetLowering.h
index 3cfc37f537e..31d43433c55 100644
--- a/include/llvm/CodeGen/TargetLowering.h
+++ b/include/llvm/CodeGen/TargetLowering.h
@@ -3868,11 +3868,6 @@ public:
/// integers as its arguments.
SDValue expandFixedPointMul(SDNode *Node, SelectionDAG &DAG) const;
- /// Method for building the DAG expansion of ISD::[US]MULO, returning the two
- /// result values as a pair.
- std::pair<SDValue, SDValue> expandMULO(SDNode *Node,
- SelectionDAG &DAG) const;
-
//===--------------------------------------------------------------------===//
// Instruction Emitting Hooks
//