From: Iain Sandoe Date: Sat, 10 Jan 2026 13:08:17 +0000 (+0000) Subject: Ada, Darwin: Fix bootstrap after recent warning improvements. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a0aa9a2b61fd3f61db6a5d95c51fd0f25c2cd322;p=thirdparty%2Fgcc.git Ada, Darwin: Fix bootstrap after recent warning improvements. Similar to the changes in r16-6620, the improved gnatwu warning finds a 'use' clause that is not needed in s-osinte__darwin.abd leading to a bootstrap fail building the libraries. Fixed by removing the extraneous 'use' clause. gcc/ada/ChangeLog: * libgnarl/s-osinte__darwin.adb: Delete unneeded use clause. Signed-off-by: Iain Sandoe --- diff --git a/gcc/ada/libgnarl/s-osinte__darwin.adb b/gcc/ada/libgnarl/s-osinte__darwin.adb index 27b8d25fb73..0c6b4e5f0dd 100644 --- a/gcc/ada/libgnarl/s-osinte__darwin.adb +++ b/gcc/ada/libgnarl/s-osinte__darwin.adb @@ -58,8 +58,6 @@ package body System.OS_Interface is -- Darwin Threads don't have clock_gettime, so use gettimeofday - use Interfaces; - TV : aliased C_Time.timeval; Result : int;