diff --git a/include/Support/Casting.h b/include/Support/Casting.h index 476d3ae681f..a5a0955c516 100644 --- a/include/Support/Casting.h +++ b/include/Support/Casting.h @@ -184,7 +184,7 @@ template struct cast_convert_val { // template inline typename cast_retty::ret_type cast(const Y &Val) { - assert(isa(Val) && "cast() argument of uncompatible type!"); + assert(isa(Val) && "cast() argument of incompatible type!"); return cast_convert_val::SimpleType>::doit(Val); } @@ -195,7 +195,7 @@ inline typename cast_retty::ret_type cast(const Y &Val) { template inline typename cast_retty::ret_type cast_or_null(Y *Val) { if (Val == 0) return 0; - assert(isa(Val) && "cast_or_null() argument of uncompatible type!"); + assert(isa(Val) && "cast_or_null() argument of incompatible type!"); return cast(Val); } diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h index 476d3ae681f..a5a0955c516 100644 --- a/include/llvm/Support/Casting.h +++ b/include/llvm/Support/Casting.h @@ -184,7 +184,7 @@ template struct cast_convert_val { // template inline typename cast_retty::ret_type cast(const Y &Val) { - assert(isa(Val) && "cast() argument of uncompatible type!"); + assert(isa(Val) && "cast() argument of incompatible type!"); return cast_convert_val::SimpleType>::doit(Val); } @@ -195,7 +195,7 @@ inline typename cast_retty::ret_type cast(const Y &Val) { template inline typename cast_retty::ret_type cast_or_null(Y *Val) { if (Val == 0) return 0; - assert(isa(Val) && "cast_or_null() argument of uncompatible type!"); + assert(isa(Val) && "cast_or_null() argument of incompatible type!"); return cast(Val); }