mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-04 17:56:53 +00:00
Remove some redundant llvm:: prefixes.
llvm-svn: 129441
This commit is contained in:
parent
f78cb4dfa4
commit
5dc08f26fc
@ -897,7 +897,7 @@ public:
|
||||
/// getWithOperands - This returns the current constant expression with the
|
||||
/// operands replaced with the specified values. The specified operands must
|
||||
/// match count and type with the existing ones.
|
||||
Constant *getWithOperands(llvm::ArrayRef<Constant*> Ops) const;
|
||||
Constant *getWithOperands(ArrayRef<Constant*> Ops) const;
|
||||
|
||||
virtual void destroyConstant();
|
||||
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
||||
|
@ -855,7 +855,7 @@ ConstantExpr::getWithOperandReplaced(unsigned OpNo, Constant *Op) const {
|
||||
/// operands replaced with the specified values. The specified operands must
|
||||
/// match count and type with the existing ones.
|
||||
Constant *ConstantExpr::
|
||||
getWithOperands(llvm::ArrayRef<Constant*> Ops) const {
|
||||
getWithOperands(ArrayRef<Constant*> Ops) const {
|
||||
assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
|
||||
bool AnyChange = false;
|
||||
for (unsigned i = 0; i != Ops.size(); ++i) {
|
||||
|
Loading…
Reference in New Issue
Block a user