Darwin: Fix a type mismatch warning for a non-GCC bootstrap compiler.
authorIain Sandoe <iain@sandoe.co.uk>
Fri, 4 Mar 2022 12:39:03 +0000 (12:39 +0000)
committerIain Sandoe <iain@sandoe.co.uk>
Fri, 4 Mar 2022 16:48:11 +0000 (16:48 +0000)
DECL_MD_FUNCTION_CODE() returns an int, on one particular compiler the
code in darwin_fold_builtin() triggers a warning.

Fixed thus.

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

* config/darwin.cc (darwin_fold_builtin): Make fcode an int to
avoid a mismatch with DECL_MD_FUNCTION_CODE().

gcc/config/darwin.cc

index 783fe3c..f065a13 100644 (file)
@@ -3621,7 +3621,7 @@ tree
 darwin_fold_builtin (tree fndecl, int n_args, tree *argp,
                     bool ARG_UNUSED (ignore))
 {
-  unsigned int fcode = DECL_MD_FUNCTION_CODE (fndecl);
+  int fcode = DECL_MD_FUNCTION_CODE (fndecl);
 
   if (fcode == darwin_builtin_cfstring)
     {