X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTransforms%2FUtils%2FValueMapper.cpp;h=5d5ca1309eec1b4f320d95c23865122a9f95e6bd;hb=4ee451de366474b9c228b4e5fa573795a715216d;hp=bfba94a24f1e220964fe9de8a50551b6feab9d09;hpb=cae0a193e310050b6bb9cc4628b7151997126f60;p=oota-llvm.git diff --git a/lib/Transforms/Utils/ValueMapper.cpp b/lib/Transforms/Utils/ValueMapper.cpp index bfba94a24f1..5d5ca1309ee 100644 --- a/lib/Transforms/Utils/ValueMapper.cpp +++ b/lib/Transforms/Utils/ValueMapper.cpp @@ -2,8 +2,8 @@ // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // @@ -12,7 +12,7 @@ // //===----------------------------------------------------------------------===// -#include "ValueMapper.h" +#include "llvm/Transforms/Utils/ValueMapper.h" #include "llvm/Constants.h" #include "llvm/GlobalValue.h" #include "llvm/Instruction.h" @@ -82,8 +82,8 @@ Value *llvm::MapValue(const Value *V, ValueMapTy &VM) { for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i) { Value *MV = MapValue(CP->getOperand(i), VM); if (MV != CP->getOperand(i)) { - // This packed value must contain a reference to a global, make a new - // packed constant and return it. + // This vector value must contain a reference to a global, make a new + // vector constant and return it. // std::vector Values; Values.reserve(CP->getNumOperands());