mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Cast NULL when requested.
llvm-svn: 803
This commit is contained in:
parent
c46b4eb5fe
commit
ebdf1737c4
@ -193,14 +193,15 @@ inline bool isa(Y Val) { return X::classof(Val); }
|
||||
|
||||
// cast<X> - Return the argument parameter cast to the specified type. This
|
||||
// casting operator asserts that the type is correct, so it does not return null
|
||||
// on failure. Used Like this:
|
||||
// on failure. But it will correctly return NULL when the input is NULL.
|
||||
// Used Like this:
|
||||
//
|
||||
// cast< Instruction>(myVal)->getParent()
|
||||
// cast<const Instruction>(myVal)->getParent()
|
||||
//
|
||||
template <class X, class Y>
|
||||
inline X *cast(Y Val) {
|
||||
assert(isa<X>(Val) && "Invalid cast argument type!");
|
||||
assert((Val == 0 || isa<X>(Val)) && "Invalid cast argument type!");
|
||||
return (X*)(real_type<Y>::Type)Val;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user