From: Alexandre Oliva Date: Thu, 2 Jul 2020 07:25:26 +0000 (-0400) Subject: [Ada] Revert "Revamp dump and aux output names" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89ca2db02e5495132feb0c4c3c9a44de27a448bf;p=thirdparty%2Fgcc.git [Ada] Revert "Revamp dump and aux output names" gcc/ada/ * switch.adb (Is_Internal_GCC_Switch): Revert accidental reintroduction of auxbase and auxbase-strip. --- diff --git a/gcc/ada/switch.adb b/gcc/ada/switch.adb index cd5f535c685d..5da63eb4ae7e 100644 --- a/gcc/ada/switch.adb +++ b/gcc/ada/switch.adb @@ -165,10 +165,7 @@ package body Switch is (Switch_Chars (First .. Last) = "-param" or else Switch_Chars (First .. Last) = "dumpdir" or else Switch_Chars (First .. Last) = "dumpbase" or else - Switch_Chars (First .. Last) = "dumpbase-ext" or else - -- Can we remove auxbase-strip and auxbase already? - Switch_Chars (First .. Last) = "auxbase-strip" or else - Switch_Chars (First .. Last) = "auxbase"); + Switch_Chars (First .. Last) = "dumpbase-ext"); end Is_Internal_GCC_Switch; ---------------