mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +00:00
Spell `incompatible' correctly.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8163 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -184,7 +184,7 @@ template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> {
|
|||||||
//
|
//
|
||||||
template <class X, class Y>
|
template <class X, class Y>
|
||||||
inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
||||||
assert(isa<X>(Val) && "cast<Ty>() argument of uncompatible type!");
|
assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
|
||||||
return cast_convert_val<X, Y,
|
return cast_convert_val<X, Y,
|
||||||
typename simplify_type<Y>::SimpleType>::doit(Val);
|
typename simplify_type<Y>::SimpleType>::doit(Val);
|
||||||
}
|
}
|
||||||
@@ -195,7 +195,7 @@ inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
|||||||
template <class X, class Y>
|
template <class X, class Y>
|
||||||
inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
|
inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
|
||||||
if (Val == 0) return 0;
|
if (Val == 0) return 0;
|
||||||
assert(isa<X>(Val) && "cast_or_null<Ty>() argument of uncompatible type!");
|
assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
|
||||||
return cast<X>(Val);
|
return cast<X>(Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -184,7 +184,7 @@ template<class To, class FromTy> struct cast_convert_val<To,FromTy,FromTy> {
|
|||||||
//
|
//
|
||||||
template <class X, class Y>
|
template <class X, class Y>
|
||||||
inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
||||||
assert(isa<X>(Val) && "cast<Ty>() argument of uncompatible type!");
|
assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
|
||||||
return cast_convert_val<X, Y,
|
return cast_convert_val<X, Y,
|
||||||
typename simplify_type<Y>::SimpleType>::doit(Val);
|
typename simplify_type<Y>::SimpleType>::doit(Val);
|
||||||
}
|
}
|
||||||
@@ -195,7 +195,7 @@ inline typename cast_retty<X, Y>::ret_type cast(const Y &Val) {
|
|||||||
template <class X, class Y>
|
template <class X, class Y>
|
||||||
inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
|
inline typename cast_retty<X, Y*>::ret_type cast_or_null(Y *Val) {
|
||||||
if (Val == 0) return 0;
|
if (Val == 0) return 0;
|
||||||
assert(isa<X>(Val) && "cast_or_null<Ty>() argument of uncompatible type!");
|
assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
|
||||||
return cast<X>(Val);
|
return cast<X>(Val);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user