1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Move method out of line

llvm-svn: 15497
This commit is contained in:
Chris Lattner 2004-08-04 18:49:52 +00:00
parent 0100ef2e24
commit c53f15303d

View File

@ -518,9 +518,7 @@ public:
/// ConstantExpr::get - Return a binary or shift operator constant expression,
/// folding if possible.
///
static Constant *get(unsigned Opcode, Constant *C1, Constant *C2) {
return getTy(C1->getType(), Opcode, C1, C2);
}
static Constant *get(unsigned Opcode, Constant *C1, Constant *C2);
/// ConstantExpr::get* - Return some common constants without having to
/// specify the full Instruction::OPCODE identifier.