Fix 80-column

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith 2015-08-04 13:24:26 +00:00
parent 5c935a9796
commit 7f68d74dde

View File

@ -260,7 +260,8 @@ static Metadata *mapUniquedNode(const MDNode *Node,
// Create a temporary node upfront in case we have a metadata cycle.
auto ClonedMD = Node->clone();
if (!remap(Node, ClonedMD.get(), Cycles, VM, Flags, TypeMapper, Materializer)) {
if (!remap(Node, ClonedMD.get(), Cycles, VM, Flags, TypeMapper,
Materializer)) {
// No operands changed, so use the identity mapping.
ClonedMD->replaceAllUsesWith(const_cast<MDNode *>(Node));
return mapToSelf(VM, Node);