Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / ada / switch-c.adb
blobeaefef90430a2a028d3eab6b84b6b587341117cd
1 ------------------------------------------------------------------------------
2 -- --
3 -- GNAT COMPILER COMPONENTS --
4 -- --
5 -- S W I T C H - C --
6 -- --
7 -- B o d y --
8 -- --
9 -- Copyright (C) 2001-2005, Free Software Foundation, Inc. --
10 -- --
11 -- GNAT is free software; you can redistribute it and/or modify it under --
12 -- terms of the GNU General Public License as published by the Free Soft- --
13 -- ware Foundation; either version 2, or (at your option) any later ver- --
14 -- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
15 -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
16 -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
17 -- for more details. You should have received a copy of the GNU General --
18 -- Public License distributed with GNAT; see file COPYING. If not, write --
19 -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
20 -- Boston, MA 02110-1301, USA. --
21 -- --
22 -- GNAT was originally developed by the GNAT team at New York University. --
23 -- Extensive contributions were provided by Ada Core Technologies Inc. --
24 -- --
25 ------------------------------------------------------------------------------
27 with GNAT.OS_Lib; use GNAT.OS_Lib;
29 with Debug; use Debug;
30 with Lib; use Lib;
31 with Osint; use Osint;
32 with Opt; use Opt;
33 with Prepcomp; use Prepcomp;
34 with Validsw; use Validsw;
35 with Sem_Warn; use Sem_Warn;
36 with Stylesw; use Stylesw;
38 with System.WCh_Con; use System.WCh_Con;
40 package body Switch.C is
42 RTS_Specified : String_Access := null;
43 -- Used to detect multiple use of --RTS= flag
45 -----------------------------
46 -- Scan_Front_End_Switches --
47 -----------------------------
49 procedure Scan_Front_End_Switches (Switch_Chars : String) is
50 Switch_Starts_With_Gnat : Boolean;
51 -- True if first four switch characters are "gnat"
53 First_Switch : Boolean := True;
54 -- False for all but first switch
56 Ptr : Integer := Switch_Chars'First;
57 Max : constant Integer := Switch_Chars'Last;
58 C : Character := ' ';
59 Dot : Boolean;
61 Store_Switch : Boolean := True;
62 First_Char : Integer := Ptr;
63 Storing : String := Switch_Chars;
64 First_Stored : Positive := Ptr + 1;
65 -- The above need comments ???
67 begin
68 -- Skip past the initial character (must be the switch character)
70 if Ptr = Max then
71 Bad_Switch (C);
72 else
73 Ptr := Ptr + 1;
74 end if;
76 -- Remove "gnat" from the switch, if present
78 Switch_Starts_With_Gnat :=
79 Ptr + 3 <= Max and then Switch_Chars (Ptr .. Ptr + 3) = "gnat";
81 if Switch_Starts_With_Gnat then
82 Ptr := Ptr + 4;
83 First_Stored := Ptr;
84 end if;
86 -- Loop to scan through switches given in switch string
88 while Ptr <= Max loop
89 Store_Switch := True;
90 First_Char := Ptr;
91 C := Switch_Chars (Ptr);
93 -- Processing for a switch
95 case Switch_Starts_With_Gnat is
97 when False =>
99 -- There are few front-end switches that
100 -- do not start with -gnat: -I, --RTS
102 if Switch_Chars (Ptr) = 'I' then
103 Store_Switch := False;
105 Ptr := Ptr + 1;
107 if Ptr > Max then
108 Bad_Switch (C);
109 end if;
111 -- Find out whether this is a -I- or regular -Ixxx switch
113 if Ptr = Max and then Switch_Chars (Ptr) = '-' then
114 Look_In_Primary_Dir := False;
116 else
117 Add_Src_Search_Dir (Switch_Chars (Ptr .. Max));
118 end if;
120 Ptr := Max + 1;
122 -- Processing of the --RTS switch. --RTS has been modified by
123 -- gcc and is now of the form -fRTS
125 elsif Ptr + 3 <= Max
126 and then Switch_Chars (Ptr .. Ptr + 3) = "fRTS"
127 then
128 Ptr := Ptr + 1;
130 if Ptr + 4 > Max
131 or else Switch_Chars (Ptr + 3) /= '='
132 then
133 Osint.Fail ("missing path for --RTS");
134 else
135 -- Check that this is the first time --RTS is specified
136 -- or if it is not the first time, the same path has
137 -- been specified.
139 if RTS_Specified = null then
140 RTS_Specified :=
141 new String'(Switch_Chars (Ptr + 4 .. Max));
143 elsif
144 RTS_Specified.all /= Switch_Chars (Ptr + 4 .. Max)
145 then
146 Osint.Fail
147 ("--RTS cannot be specified multiple times");
148 end if;
150 -- Valid --RTS switch
152 Opt.No_Stdinc := True;
153 Opt.RTS_Switch := True;
155 RTS_Src_Path_Name := Get_RTS_Search_Dir
156 (Switch_Chars (Ptr + 4 .. Max),
157 Include);
158 RTS_Lib_Path_Name := Get_RTS_Search_Dir
159 (Switch_Chars (Ptr + 4 .. Max),
160 Objects);
162 if RTS_Src_Path_Name /= null and then
163 RTS_Lib_Path_Name /= null
164 then
165 Ptr := Max + 1;
167 elsif RTS_Src_Path_Name = null and then
168 RTS_Lib_Path_Name = null
169 then
170 Osint.Fail ("RTS path not valid: missing " &
171 "adainclude and adalib directories");
173 elsif RTS_Src_Path_Name = null then
174 Osint.Fail ("RTS path not valid: missing " &
175 "adainclude directory");
177 elsif RTS_Lib_Path_Name = null then
178 Osint.Fail ("RTS path not valid: missing " &
179 "adalib directory");
180 end if;
181 end if;
182 else
183 Bad_Switch (C);
184 end if;
186 when True =>
188 -- Process -gnat* options
190 case C is
192 when 'a' =>
193 Ptr := Ptr + 1;
194 Assertions_Enabled := True;
195 Debug_Pragmas_Enabled := True;
197 -- Processing for A switch
199 when 'A' =>
200 Ptr := Ptr + 1;
201 Config_File := False;
203 -- Processing for b switch
205 when 'b' =>
206 Ptr := Ptr + 1;
207 Brief_Output := True;
209 -- Processing for c switch
211 when 'c' =>
212 if not First_Switch then
213 Osint.Fail
214 ("-gnatc must be first if combined with other switches");
215 end if;
217 Ptr := Ptr + 1;
218 Operating_Mode := Check_Semantics;
220 if Tree_Output then
221 ASIS_Mode := True;
222 end if;
224 -- Processing for d switch
226 when 'd' =>
227 Store_Switch := False;
228 Storing (First_Stored) := 'd';
229 Dot := False;
231 -- Note: for the debug switch, the remaining characters in this
232 -- switch field must all be debug flags, since all valid switch
233 -- characters are also valid debug characters.
235 -- Loop to scan out debug flags
237 while Ptr < Max loop
238 Ptr := Ptr + 1;
239 C := Switch_Chars (Ptr);
240 exit when C = ASCII.NUL or else C = '/' or else C = '-';
242 if C in '1' .. '9' or else
243 C in 'a' .. 'z' or else
244 C in 'A' .. 'Z'
245 then
246 if Dot then
247 Set_Dotted_Debug_Flag (C);
248 Storing (First_Stored + 1) := '.';
249 Storing (First_Stored + 2) := C;
250 Store_Compilation_Switch
251 (Storing (Storing'First .. First_Stored + 2));
252 Dot := False;
254 else
255 Set_Debug_Flag (C);
256 Storing (First_Stored + 1) := C;
257 Store_Compilation_Switch
258 (Storing (Storing'First .. First_Stored + 1));
259 end if;
261 elsif C = '.' then
262 Dot := True;
264 else
265 Bad_Switch (C);
266 end if;
267 end loop;
269 return;
271 -- Processing for D switch
273 when 'D' =>
274 Ptr := Ptr + 1;
276 -- Note: -gnatD also sets -gnatx (to turn off cross-reference
277 -- generation in the ali file) since otherwise this generation
278 -- gets confused by the "wrong" Sloc values put in the tree.
280 Debug_Generated_Code := True;
281 Xref_Active := False;
282 Set_Debug_Flag ('g');
284 -- -gnate? (extended switches)
286 when 'e' =>
287 Ptr := Ptr + 1;
289 -- The -gnate? switches are all double character switches
290 -- so we must always have a character after the e.
292 if Ptr > Max then
293 Bad_Switch (C);
294 end if;
296 case Switch_Chars (Ptr) is
298 -- -gnatec (configuration pragmas)
300 when 'c' =>
301 Store_Switch := False;
302 Ptr := Ptr + 1;
304 -- There may be an equal sign between -gnatec and
305 -- the path name of the config file.
307 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
308 Ptr := Ptr + 1;
309 end if;
311 if Ptr > Max then
312 Bad_Switch (C);
313 end if;
315 declare
316 Config_File_Name : constant String_Access :=
317 new String'
318 (Switch_Chars (Ptr .. Max));
320 begin
321 if Config_File_Names = null then
322 Config_File_Names :=
323 new String_List'(1 => Config_File_Name);
325 else
326 declare
327 New_Names : constant String_List_Access :=
328 new String_List
329 (1 ..
330 Config_File_Names'Length + 1);
332 begin
333 for Index in Config_File_Names'Range loop
334 New_Names (Index) :=
335 Config_File_Names (Index);
336 Config_File_Names (Index) := null;
337 end loop;
339 New_Names (New_Names'Last) := Config_File_Name;
340 Free (Config_File_Names);
341 Config_File_Names := New_Names;
342 end;
343 end if;
344 end;
346 return;
348 -- -gnateD switch (symbol definition)
350 when 'D' =>
351 Store_Switch := False;
352 Ptr := Ptr + 1;
354 if Ptr > Max then
355 Bad_Switch (C);
356 end if;
358 Add_Symbol_Definition (Switch_Chars (Ptr .. Max));
360 -- Store the switch
362 Storing (First_Stored .. First_Stored + 1) := "eD";
363 Storing
364 (First_Stored + 2 .. First_Stored + Max - Ptr + 2) :=
365 Switch_Chars (Ptr .. Max);
366 Store_Compilation_Switch (Storing
367 (Storing'First .. First_Stored + Max - Ptr + 2));
368 return;
370 -- -gnatef (full source path for brief error messages)
372 when 'f' =>
373 Store_Switch := False;
374 Ptr := Ptr + 1;
375 Full_Path_Name_For_Brief_Errors := True;
376 return;
378 -- -gnateI (index of unit in multi-unit source)
380 when 'I' =>
381 Ptr := Ptr + 1;
382 Scan_Pos
383 (Switch_Chars, Max, Ptr, Multiple_Unit_Index, C);
385 -- -gnatem (mapping file)
387 when 'm' =>
388 Store_Switch := False;
389 Ptr := Ptr + 1;
391 -- There may be an equal sign between -gnatem and
392 -- the path name of the mapping file.
394 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
395 Ptr := Ptr + 1;
396 end if;
398 if Ptr > Max then
399 Bad_Switch (C);
400 end if;
402 Mapping_File_Name :=
403 new String'(Switch_Chars (Ptr .. Max));
404 return;
406 -- -gnatep (preprocessing data file)
408 when 'p' =>
409 Store_Switch := False;
410 Ptr := Ptr + 1;
412 -- There may be an equal sign between -gnatep and
413 -- the path name of the mapping file.
415 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
416 Ptr := Ptr + 1;
417 end if;
419 if Ptr > Max then
420 Bad_Switch (C);
421 end if;
423 Preprocessing_Data_File :=
424 new String'(Switch_Chars (Ptr .. Max));
426 -- Store the switch.
427 -- Because we may store a longer switch (we normalize
428 -- to -gnatep=), use a local variable.
430 declare
431 To_Store : String
432 (1 .. Preprocessing_Data_File'Length + 8);
434 begin
435 To_Store (1 .. 8) := "-gnatep=";
436 To_Store (9 .. Preprocessing_Data_File'Length + 8) :=
437 Preprocessing_Data_File.all;
438 Store_Compilation_Switch (To_Store);
439 end;
441 return;
443 when 'z' =>
444 Store_Switch := False;
445 Disable_Switch_Storing;
446 Ptr := Ptr + 1;
448 -- All other -gnate? switches are unassigned
450 when others =>
451 Bad_Switch (C);
452 end case;
454 -- -gnatE (dynamic elaboration checks)
456 when 'E' =>
457 Ptr := Ptr + 1;
458 Dynamic_Elaboration_Checks := True;
460 -- -gnatf (full error messages)
462 when 'f' =>
463 Ptr := Ptr + 1;
464 All_Errors_Mode := True;
466 -- Processing for F switch
468 when 'F' =>
469 Ptr := Ptr + 1;
470 External_Name_Exp_Casing := Uppercase;
471 External_Name_Imp_Casing := Uppercase;
473 -- Processing for g switch
475 when 'g' =>
476 Ptr := Ptr + 1;
477 GNAT_Mode := True;
478 Identifier_Character_Set := 'n';
479 System_Extend_Unit := Empty;
480 Warning_Mode := Treat_As_Error;
482 -- Set Ada 2005 mode explicitly. We don't want to rely on the
483 -- implicit setting here, since for example, we want
484 -- Preelaborate_05 treated as Preelaborate
486 Ada_Version := Ada_05;
487 Ada_Version_Explicit := Ada_Version;
489 -- Set default warnings for -gnatg (same set as -gnatwa)
491 Check_Unreferenced := True;
492 Check_Unreferenced_Formals := True;
493 Check_Withs := True;
494 Constant_Condition_Warnings := True;
495 Implementation_Unit_Warnings := True;
496 Ineffective_Inline_Warnings := True;
497 Warn_On_Bad_Fixed_Value := True;
498 Warn_On_Constant := True;
499 Warn_On_Export_Import := True;
500 Warn_On_Modified_Unread := True;
501 Warn_On_No_Value_Assigned := True;
502 Warn_On_Obsolescent_Feature := True;
503 Warn_On_Redundant_Constructs := True;
504 Warn_On_Unchecked_Conversion := True;
505 Warn_On_Unrecognized_Pragma := True;
507 Set_Style_Check_Options ("3abcdefhiklmnprstux");
509 -- Processing for G switch
511 when 'G' =>
512 Ptr := Ptr + 1;
513 Print_Generated_Code := True;
515 -- Processing for h switch
517 when 'h' =>
518 Ptr := Ptr + 1;
519 Usage_Requested := True;
521 -- Processing for H switch
523 when 'H' =>
524 Ptr := Ptr + 1;
525 HLO_Active := True;
527 -- Processing for i switch
529 when 'i' =>
530 if Ptr = Max then
531 Bad_Switch (C);
532 end if;
534 Ptr := Ptr + 1;
535 C := Switch_Chars (Ptr);
537 if C in '1' .. '5'
538 or else C = '8'
539 or else C = '9'
540 or else C = 'p'
541 or else C = 'f'
542 or else C = 'n'
543 or else C = 'w'
544 then
545 Identifier_Character_Set := C;
546 Ptr := Ptr + 1;
548 else
549 Bad_Switch (C);
550 end if;
552 -- Processing for k switch
554 when 'k' =>
555 Ptr := Ptr + 1;
556 Scan_Pos
557 (Switch_Chars, Max, Ptr, Maximum_File_Name_Length, C);
559 -- Processing for l switch
561 when 'l' =>
562 Ptr := Ptr + 1;
563 Full_List := True;
565 -- Processing for L switch
567 when 'L' =>
568 Ptr := Ptr + 1;
569 Osint.Fail
570 ("-gnatL is no longer supported: consider using --RTS=sjlj");
572 -- Processing for m switch
574 when 'm' =>
575 Ptr := Ptr + 1;
577 -- There may be an equal sign between -gnatm and the value
579 if Ptr <= Max and then Switch_Chars (Ptr) = '=' then
580 Ptr := Ptr + 1;
581 end if;
583 Scan_Pos (Switch_Chars, Max, Ptr, Maximum_Errors, C);
585 -- Processing for n switch
587 when 'n' =>
588 Ptr := Ptr + 1;
589 Inline_Active := True;
591 -- Processing for N switch
593 when 'N' =>
594 Ptr := Ptr + 1;
595 Inline_Active := True;
596 Front_End_Inlining := True;
598 -- Processing for o switch
600 when 'o' =>
601 Ptr := Ptr + 1;
602 Suppress_Options (Overflow_Check) := False;
603 Opt.Enable_Overflow_Checks := True;
605 -- Processing for O switch
607 when 'O' =>
608 Store_Switch := False;
609 Ptr := Ptr + 1;
610 Output_File_Name_Present := True;
612 -- Processing for p switch
614 when 'p' =>
615 Ptr := Ptr + 1;
617 -- Set all specific options as well as All_Checks in the
618 -- Suppress_Options array, excluding Elaboration_Check, since
619 -- this is treated specially because we do not want -gnatp to
620 -- disable static elaboration processing.
622 for J in Suppress_Options'Range loop
623 if J /= Elaboration_Check then
624 Suppress_Options (J) := True;
625 end if;
626 end loop;
628 Validity_Checks_On := False;
629 Opt.Suppress_Checks := True;
630 Opt.Enable_Overflow_Checks := False;
632 -- Processing for P switch
634 when 'P' =>
635 Ptr := Ptr + 1;
636 Polling_Required := True;
638 -- Processing for q switch
640 when 'q' =>
641 Ptr := Ptr + 1;
642 Try_Semantics := True;
644 -- Processing for q switch
646 when 'Q' =>
647 Ptr := Ptr + 1;
648 Force_ALI_Tree_File := True;
649 Try_Semantics := True;
651 -- Processing for R switch
653 when 'R' =>
654 Ptr := Ptr + 1;
655 Back_Annotate_Rep_Info := True;
656 List_Representation_Info := 1;
658 while Ptr <= Max loop
659 C := Switch_Chars (Ptr);
661 if C in '1' .. '3' then
662 List_Representation_Info :=
663 Character'Pos (C) - Character'Pos ('0');
665 elsif Switch_Chars (Ptr) = 's' then
666 List_Representation_Info_To_File := True;
668 elsif Switch_Chars (Ptr) = 'm' then
669 List_Representation_Info_Mechanisms := True;
671 else
672 Bad_Switch (C);
673 end if;
675 Ptr := Ptr + 1;
676 end loop;
678 -- Processing for s switch
680 when 's' =>
681 if not First_Switch then
682 Osint.Fail
683 ("-gnats must be first if combined with other switches");
684 end if;
686 Ptr := Ptr + 1;
687 Operating_Mode := Check_Syntax;
689 -- Processing for S switch
691 when 'S' =>
692 Print_Standard := True;
693 Ptr := Ptr + 1;
695 -- Processing for t switch
697 when 't' =>
698 Ptr := Ptr + 1;
699 Tree_Output := True;
701 if Operating_Mode = Check_Semantics then
702 ASIS_Mode := True;
703 end if;
705 Back_Annotate_Rep_Info := True;
707 -- Processing for T switch
709 when 'T' =>
710 Ptr := Ptr + 1;
711 Scan_Pos (Switch_Chars, Max, Ptr, Table_Factor, C);
713 -- Processing for u switch
715 when 'u' =>
716 Ptr := Ptr + 1;
717 List_Units := True;
719 -- Processing for U switch
721 when 'U' =>
722 Ptr := Ptr + 1;
723 Unique_Error_Tag := True;
725 -- Processing for v switch
727 when 'v' =>
728 Ptr := Ptr + 1;
729 Verbose_Mode := True;
731 -- Processing for V switch
733 when 'V' =>
734 Store_Switch := False;
735 Storing (First_Stored) := 'V';
736 Ptr := Ptr + 1;
738 if Ptr > Max then
739 Bad_Switch (C);
741 else
742 declare
743 OK : Boolean;
745 begin
746 Set_Validity_Check_Options
747 (Switch_Chars (Ptr .. Max), OK, Ptr);
749 if not OK then
750 Bad_Switch (C);
751 end if;
753 for Index in First_Char + 1 .. Max loop
754 Storing (First_Stored + 1) :=
755 Switch_Chars (Index);
756 Store_Compilation_Switch
757 (Storing (Storing'First .. First_Stored + 1));
758 end loop;
759 end;
760 end if;
762 Ptr := Max + 1;
764 -- Processing for w switch
766 when 'w' =>
767 Store_Switch := False;
768 Storing (First_Stored) := 'w';
769 Ptr := Ptr + 1;
771 if Ptr > Max then
772 Bad_Switch (C);
773 end if;
775 while Ptr <= Max loop
776 C := Switch_Chars (Ptr);
778 if Set_Warning_Switch (C) then
779 null;
780 else
781 Bad_Switch (C);
782 end if;
784 if C /= 'w' then
785 Storing (First_Stored + 1) := C;
786 Store_Compilation_Switch
787 (Storing (Storing'First .. First_Stored + 1));
788 end if;
790 Ptr := Ptr + 1;
791 end loop;
793 return;
795 -- Processing for W switch
797 when 'W' =>
798 Ptr := Ptr + 1;
800 if Ptr > Max then
801 Bad_Switch (C);
802 end if;
804 for J in WC_Encoding_Method loop
805 if Switch_Chars (Ptr) = WC_Encoding_Letters (J) then
806 Wide_Character_Encoding_Method := J;
807 exit;
809 elsif J = WC_Encoding_Method'Last then
810 Bad_Switch (C);
811 end if;
812 end loop;
814 Upper_Half_Encoding :=
815 Wide_Character_Encoding_Method in
816 WC_Upper_Half_Encoding_Method;
818 Ptr := Ptr + 1;
820 -- Processing for x switch
822 when 'x' =>
823 Ptr := Ptr + 1;
824 Xref_Active := False;
826 -- Processing for X switch
828 when 'X' =>
829 Ptr := Ptr + 1;
830 Extensions_Allowed := True;
831 Ada_Version := Ada_Version_Type'Last;
832 Ada_Version_Explicit := Ada_Version;
834 -- Processing for y switch
836 when 'y' =>
837 Ptr := Ptr + 1;
839 if Ptr > Max then
840 Set_Default_Style_Check_Options;
842 else
843 Store_Switch := False;
844 Storing (First_Stored) := 'y';
846 declare
847 OK : Boolean;
848 Last_Stored : Integer;
850 begin
851 Set_Style_Check_Options
852 (Switch_Chars (Ptr .. Max), OK, Ptr);
854 if not OK then
855 declare
856 R : String (1 .. Style_Msg_Len + 20);
857 begin
858 R (1 .. 19) := "bad -gnaty switch (";
859 R (20 .. R'Last - 1) :=
860 Style_Msg_Buf (1 .. Style_Msg_Len);
861 R (R'Last) := ')';
862 Osint.Fail (R);
863 end;
864 end if;
866 Ptr := First_Char + 1;
867 while Ptr <= Max loop
868 Last_Stored := First_Stored + 1;
869 Storing (Last_Stored) := Switch_Chars (Ptr);
871 if Switch_Chars (Ptr) = 'M' then
872 loop
873 Ptr := Ptr + 1;
874 exit when Ptr > Max
875 or else Switch_Chars (Ptr) not in '0' .. '9';
876 Last_Stored := Last_Stored + 1;
877 Storing (Last_Stored) := Switch_Chars (Ptr);
878 end loop;
880 else
881 Ptr := Ptr + 1;
882 end if;
884 Store_Compilation_Switch
885 (Storing (Storing'First .. Last_Stored));
886 end loop;
887 end;
888 end if;
890 -- Processing for z switch
892 when 'z' =>
893 Ptr := Ptr + 1;
895 -- Allowed for compiler only if this is the only
896 -- -z switch, we do not allow multiple occurrences
898 if Distribution_Stub_Mode = No_Stubs then
899 case Switch_Chars (Ptr) is
900 when 'r' =>
901 Distribution_Stub_Mode := Generate_Receiver_Stub_Body;
903 when 'c' =>
904 Distribution_Stub_Mode := Generate_Caller_Stub_Body;
906 when others =>
907 Bad_Switch (C);
908 end case;
910 Ptr := Ptr + 1;
912 end if;
914 -- Processing for Z switch
916 when 'Z' =>
917 Ptr := Ptr + 1;
918 Osint.Fail
919 ("-gnatZ is no longer supported: consider using --RTS=zcx");
921 -- Processing for 83 switch
923 when '8' =>
924 if Ptr = Max then
925 Bad_Switch (C);
926 end if;
928 Ptr := Ptr + 1;
930 if Switch_Chars (Ptr) /= '3' then
931 Bad_Switch (C);
932 else
933 Ptr := Ptr + 1;
934 Ada_Version := Ada_83;
935 Ada_Version_Explicit := Ada_Version;
936 end if;
938 -- Processing for 95 switch
940 when '9' =>
941 if Ptr = Max then
942 Bad_Switch (C);
943 end if;
945 Ptr := Ptr + 1;
947 if Switch_Chars (Ptr) /= '5' then
948 Bad_Switch (C);
949 else
950 Ptr := Ptr + 1;
951 Ada_Version := Ada_95;
952 Ada_Version_Explicit := Ada_Version;
953 end if;
955 -- Processing for 05 switch
957 when '0' =>
958 if Ptr = Max then
959 Bad_Switch (C);
960 end if;
962 Ptr := Ptr + 1;
964 if Switch_Chars (Ptr) /= '5' then
965 Bad_Switch (C);
966 else
967 Ptr := Ptr + 1;
968 Ada_Version := Ada_05;
969 Ada_Version_Explicit := Ada_Version;
970 end if;
972 -- Ignore extra switch character
974 when '/' | '-' =>
975 Ptr := Ptr + 1;
977 -- Anything else is an error (illegal switch character)
979 when others =>
980 Bad_Switch (C);
981 end case;
982 end case;
984 if Store_Switch then
985 Storing (First_Stored .. First_Stored + Ptr - First_Char - 1) :=
986 Switch_Chars (First_Char .. Ptr - 1);
987 Store_Compilation_Switch
988 (Storing (Storing'First .. First_Stored + Ptr - First_Char - 1));
989 end if;
991 First_Switch := False;
992 end loop;
993 end Scan_Front_End_Switches;
995 end Switch.C;