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 2d2ef5b84e1..1dcd785371a 100644 --- a/gcc/cp/rtti.c +++ b/gcc/cp/rtti.c @@ -707,7 +707,7 @@ build_dynamic_cast_1 (tree type, tree expr, tsubst_flags_t complain) (NULL_TREE, ptrdiff_type_node, void_list_node)))); tmp = build_function_type (ptr_type_node, tmp); dcast_fn = build_library_fn_ptr (name, tmp); - DECL_IS_PURE (dcast_fn) = 1; + DECL_PURE_P (dcast_fn) = 1; pop_abi_namespace (); dynamic_cast_node = dcast_fn; } |