Use cast<> instead of a C-style cast to get some free assertions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136771 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jay Foad 2011-08-03 10:05:04 +00:00
parent fb5179a2fa
commit e3fbe6c0fb

View File

@ -66,12 +66,12 @@ namespace llvm {
inline MDNode *MapValue(const MDNode *V, ValueToValueMapTy &VM,
RemapFlags Flags = RF_None,
ValueMapTypeRemapper *TypeMapper = 0) {
return (MDNode*)MapValue((const Value*)V, VM, Flags, TypeMapper);
return cast<MDNode>(MapValue((const Value*)V, VM, Flags, TypeMapper));
}
inline Constant *MapValue(const Constant *V, ValueToValueMapTy &VM,
RemapFlags Flags = RF_None,
ValueMapTypeRemapper *TypeMapper = 0) {
return (Constant*)MapValue((const Value*)V, VM, Flags, TypeMapper);
return cast<Constant>(MapValue((const Value*)V, VM, Flags, TypeMapper));
}