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-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e9a7121ec24926e485f7472cef776ef98c979547;p=gcc.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 1c5b6ab82e0..a6164fb5f9b 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);