diff options
author | Tom Tromey <tromey@adacore.com> | 2025-03-17 11:58:03 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2025-03-18 06:32:45 -0600 |
commit | 5ab7e92d55958a61ee6504711ef91d9a5d102f1c (patch) | |
tree | eb0582191eeaf8b215568f8f29c04bf684c9fdb8 /gdb | |
parent | 7f6cdc6a9ef1234063c27bb56224338d47553147 (diff) | |
download | binutils-5ab7e92d55958a61ee6504711ef91d9a5d102f1c.zip binutils-5ab7e92d55958a61ee6504711ef91d9a5d102f1c.tar.gz binutils-5ab7e92d55958a61ee6504711ef91d9a5d102f1c.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/gdb.ada/static-link/pck.adb | 23 | ||||
-rw-r--r-- | gdb/testsuite/gdb.ada/static-link/pck.ads | 3 | ||||
-rw-r--r-- | gdb/testsuite/gdb.ada/static-link/prog.adb | 2 |
3 files changed, 28 insertions, 0 deletions
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 0000000..9ced74f --- /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 <http://www.gnu.org/licenses/>. + +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 e241408..4d7618f 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 <http://www.gnu.org/licenses/>. +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 75f07eb..1b5dbd5 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; |