[Ada] Revamp dump and aux output names

2020-06-04  Alexandre Oliva  <oliva@adacore.com>

gcc/ada/

	* switch.adb (Is_Internal_GCC_Switch): Recognize dumpdir and
	dumpbase-ext.  Mark auxbase and auxbase-strip for removal.
This commit is contained in:
Alexandre Oliva 2020-01-23 21:15:30 -03:00 committed by Pierre-Marie de Rodat
parent d2f87b22d1
commit 593627b456

View File

@ -165,7 +165,10 @@ 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");
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");
end Is_Internal_GCC_Switch;
---------------