X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fcp%2Fmethod.c;h=4563e8f6b5cc246452ed186bbc48a8f92309bdb0;hb=27ccbdd99bae356e6bd76abe15bb9ef02fe586d2;hp=6950c2d8d5746b302eebf28e28a6e0fb8f0af095;hpb=b2e9b7542b3ae4526a459d646c7b76a6756f0abf;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/cp/method.c b/gcc/cp/method.c index 6950c2d8d57..4563e8f6b5c 100644 --- a/gcc/cp/method.c +++ b/gcc/cp/method.c @@ -157,8 +157,6 @@ make_thunk (tree function, bool this_adjusting, /* The THUNK is not a pending inline, even if the FUNCTION is. */ DECL_PENDING_INLINE_P (thunk) = 0; DECL_DECLARED_INLINE_P (thunk) = 0; - /* Nor has it been deferred. */ - DECL_DEFERRED_FN (thunk) = 0; /* Nor is it a template instantiation. */ DECL_USE_TEMPLATE (thunk) = 0; DECL_TEMPLATE_INFO (thunk) = NULL; @@ -286,7 +284,6 @@ make_alias_for (tree function, tree newid) DECL_NO_STATIC_CHAIN (alias) = 1; DECL_PENDING_INLINE_P (alias) = 0; DECL_DECLARED_INLINE_P (alias) = 0; - DECL_DEFERRED_FN (alias) = 0; DECL_USE_TEMPLATE (alias) = 0; DECL_TEMPLATE_INSTANTIATED (alias) = 0; DECL_TEMPLATE_INFO (alias) = NULL;