From 5dc08f26fc8158ae7366a90d447f991ea227c04b Mon Sep 17 00:00:00 2001 From: Jay Foad Date: Wed, 13 Apr 2011 14:39:42 +0000 Subject: [PATCH] Remove some redundant llvm:: prefixes. llvm-svn: 129441 --- include/llvm/Constants.h | 2 +- lib/VMCore/Constants.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 7a9a0e73242..f00a763edb2 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -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 Ops) const; + Constant *getWithOperands(ArrayRef Ops) const; virtual void destroyConstant(); virtual void replaceUsesOfWithOnConstant(Value *From, Value *To, Use *U); diff --git a/lib/VMCore/Constants.cpp b/lib/VMCore/Constants.cpp index 3c347ddd41b..c34234ad589 100644 --- a/lib/VMCore/Constants.cpp +++ b/lib/VMCore/Constants.cpp @@ -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 Ops) const { +getWithOperands(ArrayRef Ops) const { assert(Ops.size() == getNumOperands() && "Operand count mismatch!"); bool AnyChange = false; for (unsigned i = 0; i != Ops.size(); ++i) {