[Ada] Revert "Revamp dump and aux output names"

gcc/ada/

	* switch.adb (Is_Internal_GCC_Switch): Revert accidental
	reintroduction of auxbase and auxbase-strip.
This commit is contained in:
Alexandre Oliva 2020-07-02 03:25:26 -04:00 committed by Pierre-Marie de Rodat
parent abd4c42269
commit fd5966e8e0
1 changed files with 1 additions and 4 deletions

View File

@ -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;
---------------