summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-06-09 16:03:19 +0000
committerEric Christopher <echristo@apple.com>2011-06-09 16:03:19 +0000
commitf15601f19a77ad3ae997b72a40a315ef05126b0e (patch)
treee0f695f1c222c378cd98282cac8c801a6d61fb8c /llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
parentcafa08cbf3b5f0566ff7911c51f8eff3aef06192 (diff)
downloadbcm5719-llvm-f15601f19a77ad3ae997b72a40a315ef05126b0e.tar.gz
bcm5719-llvm-f15601f19a77ad3ae997b72a40a315ef05126b0e.zip
Speculatively revert 132758 and 132768 to try to fix the Windows buildbots.
llvm-svn: 132777
Diffstat (limited to 'llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp')
-rw-r--r--llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp b/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
index c35c8522443..d8a84ce5299 100644
--- a/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
+++ b/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
@@ -94,10 +94,6 @@ private:
inline SDValue getI32Imm(unsigned Imm) {
return CurDAG->getTargetConstant(Imm, MVT::i32);
}
-
- virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
- char ConstraintCode,
- std::vector<SDValue> &OutOps);
};
}
@@ -466,14 +462,6 @@ SDNode* MipsDAGToDAGISel::Select(SDNode *Node) {
return ResNode;
}
-bool MipsDAGToDAGISel::
-SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
- std::vector<SDValue> &OutOps) {
- assert(ConstraintCode == 'm' && "unexpected asm memory constraint");
- OutOps.push_back(Op);
- return false;
-}
-
/// createMipsISelDag - This pass converts a legalized DAG into a
/// MIPS-specific DAG, ready for instruction scheduling.
FunctionPass *llvm::createMipsISelDag(MipsTargetMachine &TM) {
OpenPOWER on IntegriCloud