From: Ed Schonberg Date: Thu, 13 Dec 2007 10:24:44 +0000 (+0100) Subject: expander.adb: Take into account N_Subprogram_Renaming_Declaration X-Git-Tag: releases/gcc-4.3.0~1067 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9a7121ec24926e485f7472cef776ef98c979547;p=thirdparty%2Fgcc.git expander.adb: Take into account N_Subprogram_Renaming_Declaration 2007-12-06 Ed Schonberg * expander.adb: Take into account N_Subprogram_Renaming_Declaration From-SVN: r130829 --- diff --git a/gcc/ada/expander.adb b/gcc/ada/expander.adb index 1c5b6ab82e0c..a6164fb5f9b7 100644 --- a/gcc/ada/expander.adb +++ b/gcc/ada/expander.adb @@ -342,6 +342,9 @@ package body Expander is when N_Package_Renaming_Declaration => Expand_N_Package_Renaming_Declaration (N); + when N_Subprogram_Renaming_Declaration => + Expand_N_Subprogram_Renaming_Declaration (N); + when N_Pragma => Expand_N_Pragma (N);