svn commit: r280218 - head/usr.bin/xlint/lint1

Ed Maste emaste at FreeBSD.org
Wed Mar 18 13:07:20 UTC 2015


Author: emaste
Date: Wed Mar 18 13:07:19 2015
New Revision: 280218
URL: https://svnweb.freebsd.org/changeset/base/280218

Log:
  xlint: add arm64 #define
  
  Submitted by:	andrew@
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.bin/xlint/lint1/param.h

Modified: head/usr.bin/xlint/lint1/param.h
==============================================================================
--- head/usr.bin/xlint/lint1/param.h	Wed Mar 18 13:01:09 2015	(r280217)
+++ head/usr.bin/xlint/lint1/param.h	Wed Mar 18 13:07:19 2015	(r280218)
@@ -95,6 +95,9 @@
 #elif __mips__
 #define PTRDIFF_IS_LONG		0
 #define SIZEOF_IS_ULONG		0
+#elif __aarch64__
+#define PTRDIFF_IS_LONG		1
+#define SIZEOF_IS_ULONG		1
 #else
 #error unknown machine type
 #endif


More information about the svn-src-all mailing list