]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Darwin: Correct a merge error.
authorIain Sandoe <iain@sandoe.co.uk>
Sun, 28 Apr 2024 16:05:06 +0000 (17:05 +0100)
committerIain Sandoe <iain@sandoe.co.uk>
Sun, 28 Apr 2024 16:05:06 +0000 (17:05 +0100)
For this branch the default_libc_has_function () is not available.

Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
gcc/ChangeLog:

* config/darwin.c: Return true as the default libc avaiability.

gcc/config/darwin.c

index 6e887a9ba5ab278d558059b6210b7917e15ff540..a473ea79b1b3d75ead616bc2f150d5078b587e25 100644 (file)
@@ -3603,7 +3603,7 @@ darwin_libc_has_function (enum function_class fn_class,
            || (darwin_macosx_version_min &&
                strverscmp (darwin_macosx_version_min, "10.3") >= 0));
 #endif
-  return default_libc_has_function (fn_class, type);
+  return true;
 }
 
 /*  CFStrings implementation.  */