Remove trailing slash from r225924

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225929 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan P. N. Exon Smith 2015-01-14 01:42:43 +00:00
parent 037c21f82c
commit a8f0d2f673

View File

@ -218,7 +218,7 @@ static Metadata *cloneMDNode(const UniquableMDNode *Node, ValueToValueMapTy &VM,
#define HANDLE_UNIQUABLE_LEAF(CLASS) \
case Metadata::CLASS##Kind: \
return clone##CLASS(cast<CLASS>(Node), VM, Flags, TypeMapper, \
Materializer, IsDistinct); \
Materializer, IsDistinct);
#include "llvm/IR/Metadata.def"
}
}