From: Evan Cheng Date: Tue, 28 Jun 2011 21:33:11 +0000 (+0000) Subject: Unbreak every backend. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=a01b58af85cebd7d7bcf94d48317f8cc8a4bdf57;p=oota-llvm.git Unbreak every backend. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134031 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 980a53737de..70969ebd73f 100644 --- a/include/llvm/Target/TargetInstrInfo.h +++ b/include/llvm/Target/TargetInstrInfo.h @@ -681,7 +681,8 @@ protected: TargetInstrInfoImpl(const MCInstrDesc *desc, unsigned NumOpcodes, int CallFrameSetupOpcode = -1, int CallFrameDestroyOpcode = -1) - : TargetInstrInfo(desc, NumOpcodes) {} + : TargetInstrInfo(desc, NumOpcodes, + CallFrameSetupOpcode, CallFrameDestroyOpcode) {} public: virtual void ReplaceTailWithBranchTo(MachineBasicBlock::iterator OldInst, MachineBasicBlock *NewDest) const;