From af494c5f13354fe52159cd2d0fc1adc2aba99e26 Mon Sep 17 00:00:00 2001 From: Alkis Evlogimenos Date: Wed, 26 May 2004 22:07:18 +0000 Subject: Inline trivial constructors. llvm-svn: 13797 --- llvm/lib/VMCore/iSwitch.cpp | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'llvm/lib/VMCore/iSwitch.cpp') diff --git a/llvm/lib/VMCore/iSwitch.cpp b/llvm/lib/VMCore/iSwitch.cpp index d4dccde5b58..b78cfbbdc3d 100644 --- a/llvm/lib/VMCore/iSwitch.cpp +++ b/llvm/lib/VMCore/iSwitch.cpp @@ -22,17 +22,6 @@ void SwitchInst::init(Value *Value, BasicBlock *Default) Operands.push_back(Use(Default, this)); } -SwitchInst::SwitchInst(Value *V, BasicBlock *D, - Instruction *InsertBefore) - : TerminatorInst(Instruction::Switch, InsertBefore) { - init(V, D); -} - -SwitchInst::SwitchInst(Value *V, BasicBlock *D, BasicBlock *InsertAtEnd) - : TerminatorInst(Instruction::Switch, InsertAtEnd) { - init(V, D); -} - SwitchInst::SwitchInst(const SwitchInst &SI) : TerminatorInst(Instruction::Switch) { Operands.reserve(SI.Operands.size()); -- cgit v1.2.3