From: Gabor Greif Date: Sat, 18 Sep 2010 13:03:32 +0000 (+0000) Subject: restrict dyn_cast_or_null to pointer types, just like cast_or_null; re-commit of... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=3fde69c0f1d2ccfcc0847cebffb3b9805bef8a06;p=oota-llvm.git restrict dyn_cast_or_null to pointer types, just like cast_or_null; re-commit of r114279, backed out in r114280 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114282 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/Casting.h b/include/llvm/Support/Casting.h index c589171bbaf..6bb98064382 100644 --- a/include/llvm/Support/Casting.h +++ b/include/llvm/Support/Casting.h @@ -232,8 +232,8 @@ inline typename cast_retty::ret_type dyn_cast(const Y &Val) { // value is accepted. // template -inline typename cast_retty::ret_type dyn_cast_or_null(const Y &Val) { - return (Val && isa(Val)) ? cast(Val) : 0; +inline typename cast_retty::ret_type dyn_cast_or_null(Y *Val) { + return (Val && isa(Val)) ? cast(Val) : 0; } } // End llvm namespace