From 5745d8c2cf72b41963c06ddda2de7a6fea42d41d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milo=C5=A1=20Prchl=C3=ADk?= Date: Tue, 23 Jan 2024 15:19:06 +0100 Subject: [PATCH] /tests/bugs/holes-in-debuginfo: fix reproducer to not dies because of missing declarations --- tests/bugs/holes-in-debuginfo/test.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/bugs/holes-in-debuginfo/test.c b/tests/bugs/holes-in-debuginfo/test.c index 80e7cc4..950d892 100644 --- a/tests/bugs/holes-in-debuginfo/test.c +++ b/tests/bugs/holes-in-debuginfo/test.c @@ -1,3 +1,6 @@ +extern void k(int); +extern void l(int, int*); + void f(int i) { k(i); }