diff options
| author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-26 22:07:18 +0000 |
|---|---|---|
| committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-05-26 22:07:18 +0000 |
| commit | af494c5f13354fe52159cd2d0fc1adc2aba99e26 (patch) | |
| tree | 58c5110385f078bf82c36e3e6fc71de1ffd166e8 /llvm/lib/VMCore/iSwitch.cpp | |
| parent | 56010e40777f09aceab45db0d2242f112212cd70 (diff) | |
| download | bcm5719-llvm-af494c5f13354fe52159cd2d0fc1adc2aba99e26.tar.gz bcm5719-llvm-af494c5f13354fe52159cd2d0fc1adc2aba99e26.zip | |
Inline trivial constructors.
llvm-svn: 13797
Diffstat (limited to 'llvm/lib/VMCore/iSwitch.cpp')
| -rw-r--r-- | llvm/lib/VMCore/iSwitch.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
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()); |

