From: Tom Tromey Date: Mon, 17 Mar 2025 17:58:03 +0000 (-0600) Subject: Preserve a local variable in a gdb test X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5ab7e92d55958a61ee6504711ef91d9a5d102f1c;p=thirdparty%2Fbinutils-gdb.git Preserve a local variable in a gdb test I found another Ada test where LLVM optimizes away an unused local variable. This patch fixes this problem -- but note the test now fails for a different (currently expected) reason. --- diff --git a/gdb/testsuite/gdb.ada/static-link/pck.adb b/gdb/testsuite/gdb.ada/static-link/pck.adb new file mode 100644 index 00000000000..9ced74f76d8 --- /dev/null +++ b/gdb/testsuite/gdb.ada/static-link/pck.adb @@ -0,0 +1,23 @@ +-- Copyright 2025 Free Software Foundation, Inc. +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see . + +package body Pck is + + procedure Do_Nothing (A : System.Address) is + begin + null; + end Do_Nothing; + +end Pck; diff --git a/gdb/testsuite/gdb.ada/static-link/pck.ads b/gdb/testsuite/gdb.ada/static-link/pck.ads index e241408aca8..4d7618fc91a 100644 --- a/gdb/testsuite/gdb.ada/static-link/pck.ads +++ b/gdb/testsuite/gdb.ada/static-link/pck.ads @@ -13,6 +13,9 @@ -- You should have received a copy of the GNU General Public License -- along with this program. If not, see . +with System; package Pck is Some_Value : Integer := 3; + + procedure Do_Nothing (A : System.Address); end Pck; diff --git a/gdb/testsuite/gdb.ada/static-link/prog.adb b/gdb/testsuite/gdb.ada/static-link/prog.adb index 75f07eb58c7..1b5dbd58af1 100644 --- a/gdb/testsuite/gdb.ada/static-link/prog.adb +++ b/gdb/testsuite/gdb.ada/static-link/prog.adb @@ -32,4 +32,6 @@ procedure Prog is begin Intermediate; + Do_Nothing (Upper'Address); + Do_Nothing (Value'Address); end Prog;