[llvm-commits] [llvm] r129441 - in /llvm/trunk: include/llvm/Constants.h lib/VMCore/Constants.cpp

Jay Foad jay.foad at gmail.com
Wed Apr 13 07:39:42 PDT 2011


Author: foad
Date: Wed Apr 13 09:39:42 2011
New Revision: 129441

URL: http://llvm.org/viewvc/llvm-project?rev=129441&view=rev
Log:
Remove some redundant llvm:: prefixes.

Modified:
    llvm/trunk/include/llvm/Constants.h
    llvm/trunk/lib/VMCore/Constants.cpp

Modified: llvm/trunk/include/llvm/Constants.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Constants.h?rev=129441&r1=129440&r2=129441&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Constants.h (original)
+++ llvm/trunk/include/llvm/Constants.h Wed Apr 13 09:39:42 2011
@@ -897,7 +897,7 @@
   /// 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);

Modified: llvm/trunk/lib/VMCore/Constants.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Constants.cpp?rev=129441&r1=129440&r2=129441&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Constants.cpp (original)
+++ llvm/trunk/lib/VMCore/Constants.cpp Wed Apr 13 09:39:42 2011
@@ -855,7 +855,7 @@
 /// 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) {





More information about the llvm-commits mailing list