Avoid some compiler warnings in gdb.ada
authorTom Tromey <tromey@adacore.com>
Thu, 27 Apr 2023 16:26:43 +0000 (10:26 -0600)
committerTom Tromey <tromey@adacore.com>
Thu, 27 Apr 2023 16:31:32 +0000 (10:31 -0600)
Running gdb.ada/verylong.exp shows a warning from the Ada compiler:

prog.adb:16:11: warning: file name does not match unit name, should be "main.adb" [enabled by default]

This patch fixes the problem, and another similar one in
unchecked_union.exp.

gdb/testsuite/gdb.ada/unchecked_union/unchecked_union.adb
gdb/testsuite/gdb.ada/verylong/prog.adb

index c3bccb6969649b44cf2c49d3a9977f0b29b39637..502c1da37bc23cc48c824eff989112ecad23ae33 100644 (file)
@@ -16,7 +16,7 @@
 with System;
 with Pck; use Pck;
 
-procedure Foo is
+procedure Unchecked_Union is
    type Key is (Alpha, Beta, Omega);
 
    type Inner(Disc : Key := Omega) is record
@@ -52,4 +52,4 @@ procedure Foo is
 
 begin
    Do_Nothing (Value'Address);          -- BREAK
-end Foo;
+end Unchecked_Union;
index 766419d0a4f42de4c09e7fc4aa2eab3f5be5c92d..63fba1d2d3a497af56b13cc6e545da3d24b202e2 100644 (file)
@@ -13,8 +13,8 @@
 --  You should have received a copy of the GNU General Public License
 --  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-procedure Main is
+procedure Prog is
    X : Long_Long_Long_Integer := Long_Long_Long_Integer'Last;
 begin
    null; -- START
-end Main;
+end Prog;