summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorJay Foad <jay.foad@gmail.com>2011-04-13 14:39:42 +0000
committerJay Foad <jay.foad@gmail.com>2011-04-13 14:39:42 +0000
commit47f89e0f55f8c81946380854c7fdfe66345488aa (patch)
tree5ab22f22a9ba1195534c98cee2e731561da57bb7 /llvm/lib
parent01b43b885ba832ccc0559ff9cd2f054795c1d578 (diff)
downloadbcm5719-llvm-47f89e0f55f8c81946380854c7fdfe66345488aa.tar.gz
bcm5719-llvm-47f89e0f55f8c81946380854c7fdfe66345488aa.zip
Remove some redundant llvm:: prefixes.
llvm-svn: 129441
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/VMCore/Constants.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/VMCore/Constants.cpp b/llvm/lib/VMCore/Constants.cpp
index 3c347ddd41b..c34234ad589 100644
--- a/llvm/lib/VMCore/Constants.cpp
+++ b/llvm/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<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) {
OpenPOWER on IntegriCloud