diff options
author | Chris Lattner <sabre@nondot.org> | 2001-06-25 07:33:13 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-06-25 07:33:13 +0000 |
commit | 20554f11d0410496bc5c49744e0d45c71a1a3955 (patch) | |
tree | 69b5232ea26f9799ddb3f7d814e7442a39638bb3 /lib/VMCore/iOperators.cpp | |
parent | d473a0acc4f80eca8c98cf449a77633d1f2e8636 (diff) |
Moved UnaryOperator::create to InstrTypes.cpp until there is an iUnaryOps.cpp
Moved BinaryOperator::create to iBinaryOperators.cpp
Add getUniqueName to SymbolTable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/iOperators.cpp')
-rw-r--r-- | lib/VMCore/iOperators.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/VMCore/iOperators.cpp b/lib/VMCore/iOperators.cpp index c754f42b6f..d856a20d0a 100644 --- a/lib/VMCore/iOperators.cpp +++ b/lib/VMCore/iOperators.cpp @@ -7,6 +7,25 @@ #include "llvm/iBinary.h" #include "llvm/Type.h" +BinaryOperator *BinaryOperator::create(unsigned Op, Value *S1, Value *S2, + const string &Name) { + switch (Op) { + case Add: return new AddInst(S1, S2, Name); + case Sub: return new SubInst(S1, S2, Name); + case SetLT: + case SetGT: + case SetLE: + case SetGE: + case SetEQ: + case SetNE: + return new SetCondInst((BinaryOps)Op, S1, S2, Name); + + default: + cerr << "Don't know how to GetBinaryOperator " << Op << endl; + return 0; + } +} + //===----------------------------------------------------------------------===// // SetCondInst Class //===----------------------------------------------------------------------===// |