From 8d215439f665e51adc55dc2c4ba743ee576cb2fc Mon Sep 17 00:00:00 2001 From: Bruno Larsen Date: Wed, 20 Jul 2022 16:44:35 -0300 Subject: [PATCH] gdb/testsuite: fix gdb.base/msym-bp-shl when running with Clang When trying to test gdb.base/msym-bp-shl.exp using clang, it would have many failures because one of the version of the foo function was being optimized away. Adding __attribute__ ((used)) to it fixed this. --- gdb/testsuite/gdb.base/msym-bp-shl-main-2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/testsuite/gdb.base/msym-bp-shl-main-2.c b/gdb/testsuite/gdb.base/msym-bp-shl-main-2.c index e047ac1145a..009656fd9ea 100644 --- a/gdb/testsuite/gdb.base/msym-bp-shl-main-2.c +++ b/gdb/testsuite/gdb.base/msym-bp-shl-main-2.c @@ -15,7 +15,7 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -static void +static void __attribute__ ((used)) foo (void) { } -- 2.30.2