[Ada] Cannot process -S -o with GNAT LLVM
authorArnaud Charlet <charlet@adacore.com>
Fri, 9 Oct 2020 07:49:57 +0000 (09:49 +0200)
committerPierre-Marie de Rodat <derodat@adacore.com>
Tue, 24 Nov 2020 10:16:07 +0000 (05:16 -0500)
gcc/ada/

* opt.ads (Generate_Asm): New flag.
* osint-c.adb (Set_Output_Object_File_Name): Accept any
extension when generating assembly.
* adabkend.adb (Scan_Compiler_Args): Recognize -S.

gcc/ada/adabkend.adb
gcc/ada/opt.ads
gcc/ada/osint-c.adb

index 6fb4a84b71fb584422e60a96d0f72c7c4faacedf..b10c0bd94caa9434a4371d4facee9d6c77670af1 100644 (file)
@@ -218,6 +218,9 @@ package body Adabkend is
                end case;
             end if;
 
+         elsif Switch_Chars (First .. Last) = "S" then
+            Generate_Asm := True;
+
          --  Ignore all other back-end switches
 
          elsif Is_Back_End_Switch (Switch_Chars) then
index 3e9f36edc7e28fd2b514fef5eb203ce4e0def0cb..5017792a981b169470574682e1d728b84537f9c9 100644 (file)
@@ -719,6 +719,10 @@ package Opt is
    --  the name is of the form .xxx, then to name.xxx where name is the source
    --  file name with extension stripped.
 
+   Generate_Asm : Boolean := False;
+   --  GNAT
+   --  True if generating assembly instead of an object file, via the -S switch
+
    Generate_C_Code : Boolean := False;
    --  GNAT, GNATBIND
    --  If True, the Cprint circuitry to generate C code output is activated.
index 0010a8deec18ebf413c66247777a9b1700e165b0..8ef8b8bf093ed3f41512f0af3f2ea98bb869a8c5 100644 (file)
@@ -480,6 +480,7 @@ package body Osint.C is
          or else
           (Name (NL - EL + Name'First .. Name'Last) /= Ext
              and then Name (NL - 2 + Name'First .. Name'Last) /= ".o"
+             and then not Generate_Asm
              and then
                (not Generate_C_Code
                   or else Name (NL - 2 + Name'First .. Name'Last) /= ".c"))