diff options
Diffstat (limited to 'gcc/cp/rtti.c')
-rw-r--r-- | gcc/cp/rtti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/rtti.c b/gcc/cp/rtti.c index 1c67832..1d5da67 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -721,7 +721,7 @@ build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain) tree neq; result = save_expr (result); - neq = c_common_truthvalue_conversion (result); + neq = c_common_truthvalue_conversion (input_location, result); return cp_convert (type, build3 (COND_EXPR, TREE_TYPE (result), neq, result, bad)); |