Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Jan 2020 20:11:28 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r357226 - head/contrib/binutils/bfd
Message-ID:  <202001282011.00SKBS5S084986@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Tue Jan 28 20:11:27 2020
New Revision: 357226
URL: https://svnweb.freebsd.org/changeset/base/357226

Log:
  Merge r357224 from the clang1000-import branch:
  
  Fix the following -Werror warning from clang 10.0.0 in binutils:
  
  contrib/binutils/bfd/peicode.h:1356:3: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                  if (efi)
                  ^
  contrib/binutils/bfd/peicode.h:1353:8: note: previous statement is here
                if (pe_arch (bfd_target_efi_arch (*target_ptr)) != arch)
                ^
  contrib/binutils/bfd/peicode.h:1370:3: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
                  if (!efi)
                  ^
  contrib/binutils/bfd/peicode.h:1367:8: note: previous statement is here
                if (pe_arch (bfd_target_pei_arch (*target_ptr)) != arch)
                ^
  
  MFC after:	3 days

Modified:
  head/contrib/binutils/bfd/peicode.h
Directory Properties:
  head/   (props changed)
  head/contrib/binutils/   (props changed)

Modified: head/contrib/binutils/bfd/peicode.h
==============================================================================
--- head/contrib/binutils/bfd/peicode.h	Tue Jan 28 20:10:26 2020	(r357225)
+++ head/contrib/binutils/bfd/peicode.h	Tue Jan 28 20:11:27 2020	(r357226)
@@ -1353,13 +1353,13 @@ pe_bfd_object_p (bfd * abfd)
 	      if (pe_arch (bfd_target_efi_arch (*target_ptr)) != arch)
 		continue;
 
-		if (efi)
-		  {
-		    /* TARGET_PTR is an EFI backend.  Don't match
-		       TARGET with a EFI file.  */
-		    bfd_set_error (bfd_error_wrong_format);
-		    return NULL;
-		  }
+	      if (efi)
+		{
+		  /* TARGET_PTR is an EFI backend.  Don't match
+		     TARGET with a EFI file.  */
+		  bfd_set_error (bfd_error_wrong_format);
+		  return NULL;
+		}
 	    }
 	  else if (bfd_target_pei_p (*target_ptr))
 	    {
@@ -1367,13 +1367,13 @@ pe_bfd_object_p (bfd * abfd)
 	      if (pe_arch (bfd_target_pei_arch (*target_ptr)) != arch)
 		continue;
 
-		if (!efi)
-		  {
-		    /* TARGET_PTR is a PE backend.  Don't match
-		       TARGET with a PE file.  */
-		    bfd_set_error (bfd_error_wrong_format);
-		    return NULL;
-		  }
+	      if (!efi)
+		{
+		  /* TARGET_PTR is a PE backend.  Don't match
+		     TARGET with a PE file.  */
+		  bfd_set_error (bfd_error_wrong_format);
+		  return NULL;
+		}
 	    }
 	}
     }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202001282011.00SKBS5S084986>