diff options
author | Evan Cheng <evan.cheng@apple.com> | 2011-06-28 21:33:11 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2011-06-28 21:33:11 +0000 |
commit | a01b58af85cebd7d7bcf94d48317f8cc8a4bdf57 (patch) | |
tree | 0b2a8184e7080380bbd50b3c8683a2b06c5833c9 | |
parent | d5b03f252c0db6b49a242abab63d7c5a260fceae (diff) |
Unbreak every backend.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134031 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h index 980a53737d..70969ebd73 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; |