mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-14 11:32:34 +00:00
Remove some redundant llvm:: prefixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129441 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cda60cec16
commit
cb53632869
@ -897,7 +897,7 @@ public:
|
|||||||
/// getWithOperands - This returns the current constant expression with the
|
/// getWithOperands - This returns the current constant expression with the
|
||||||
/// operands replaced with the specified values. The specified operands must
|
/// operands replaced with the specified values. The specified operands must
|
||||||
/// match count and type with the existing ones.
|
/// 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 destroyConstant();
|
||||||
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U);
|
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
|
/// operands replaced with the specified values. The specified operands must
|
||||||
/// match count and type with the existing ones.
|
/// match count and type with the existing ones.
|
||||||
Constant *ConstantExpr::
|
Constant *ConstantExpr::
|
||||||
getWithOperands(llvm::ArrayRef<Constant*> Ops) const {
|
getWithOperands(ArrayRef<Constant*> Ops) const {
|
||||||
assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
|
assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
|
||||||
bool AnyChange = false;
|
bool AnyChange = false;
|
||||||
for (unsigned i = 0; i != Ops.size(); ++i) {
|
for (unsigned i = 0; i != Ops.size(); ++i) {
|
||||||
|
Loading…
Reference in New Issue
Block a user