]> git.ipfire.org Git - thirdparty/gcc.git/commit
[Ada] Suppress warnings in trivial subprograms with finalization
authorBob Duff <duff@adacore.com>
Wed, 20 Jul 2022 21:37:51 +0000 (17:37 -0400)
committerMarc Poulhiès <poulhies@adacore.com>
Mon, 5 Sep 2022 07:21:03 +0000 (09:21 +0200)
commitfc32180d704e59553584ae2a814089c2af1bce09
treed3ef834afc1a3407debaef5c747d9477dfda0560
parent7449db0bf4a2c920538a7f947ccec2831802ded4
[Ada] Suppress warnings in trivial subprograms with finalization

There are heuristics for suppressing warnings about unused objects in
trivial cases. In particular, we try to suppress warnings here:

   function F (A : Integer) return Some_Type;
      X : Some_Type;
   begin
      raise Not_Yet_Implemented;
      return X;
   end F;

But it doesn't work if Some_Type is controlled. This patch fixes that
bug.

gcc/ada/

* sem_ch6.adb
(Analyze_Subprogram_Body_Helper): Use First_Real_Statement to deal
with this case. Note that First_Real_Statement is likely to be
removed as part of this ticket, so this is a temporary fix.
gcc/ada/sem_ch6.adb