Author: imp
Date: Wed Jun  5 00:08:30 2019
New Revision: 348675
URL: https://svnweb.freebsd.org/changeset/base/348675

Log:
  ufs_module.c can't currently be compiled with -Wcast-align, but the
  code is safe enough. Turn off the warning for now until I can find the
  right construct to silence it in the code.

Modified:
  head/stand/efi/boot1/Makefile

Modified: head/stand/efi/boot1/Makefile
==============================================================================
--- head/stand/efi/boot1/Makefile       Wed Jun  5 00:04:21 2019        
(r348674)
+++ head/stand/efi/boot1/Makefile       Wed Jun  5 00:08:30 2019        
(r348675)
@@ -15,6 +15,9 @@ CFLAGS+=      -DEFI_BOOT1
 # warnings for now.
 CWARNFLAGS.boot1.c+=   -Wno-format
 
+# Disable bogus alignment issues
+CWARNFLAGS.ufs_module.c += -Wno-cast-align
+
 # Disable warnings that are currently incompatible with the zfs boot code
 CWARNFLAGS.zfs_module.c += -Wno-array-bounds
 CWARNFLAGS.zfs_module.c += -Wno-cast-align
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to