mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-05 02:07:56 +00:00
allow these to take a generic Value*
llvm-svn: 21492
This commit is contained in:
parent
26c5e79151
commit
d40a7efbbb
@ -208,10 +208,10 @@ public:
|
||||
/// getNegArgument, getNotArgument - Helper functions to extract the
|
||||
/// unary argument of a NEG or NOT operation implemented via Sub or Xor.
|
||||
///
|
||||
static const Value* getNegArgument(const BinaryOperator* Bop);
|
||||
static Value* getNegArgument( BinaryOperator* Bop);
|
||||
static const Value* getNotArgument(const BinaryOperator* Bop);
|
||||
static Value* getNotArgument( BinaryOperator* Bop);
|
||||
static const Value* getNegArgument(const Value *BinOp);
|
||||
static Value* getNegArgument( Value *BinOp);
|
||||
static const Value* getNotArgument(const Value *BinOp);
|
||||
static Value* getNotArgument( Value *BinOp);
|
||||
|
||||
BinaryOps getOpcode() const {
|
||||
return static_cast<BinaryOps>(Instruction::getOpcode());
|
||||
|
Loading…
Reference in New Issue
Block a user