svn commit: r327993 - stable/11/contrib/llvm/lib/Support/Unix

Dimitry Andric dim at FreeBSD.org
Mon Jan 15 08:04:57 UTC 2018


Author: dim
Date: Mon Jan 15 08:04:55 2018
New Revision: 327993
URL: https://svnweb.freebsd.org/changeset/base/327993

Log:
  MFC r327845:
  
  Pull in r316581 from upstream llvm trunk (by John Baldwin):
  
    Don't try to use a non-existent header on FreeBSD/mips.
  
    Reviewers: dim
  
    Differential Revision: https://reviews.llvm.org/D38807
  
  Requested by:	jhb

Modified:
  stable/11/contrib/llvm/lib/Support/Unix/Memory.inc
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/contrib/llvm/lib/Support/Unix/Memory.inc
==============================================================================
--- stable/11/contrib/llvm/lib/Support/Unix/Memory.inc	Mon Jan 15 06:46:33 2018	(r327992)
+++ stable/11/contrib/llvm/lib/Support/Unix/Memory.inc	Mon Jan 15 08:04:55 2018	(r327993)
@@ -27,7 +27,7 @@
 #if defined(__mips__)
 #  if defined(__OpenBSD__)
 #    include <mips64/sysarch.h>
-#  else
+#  elif !defined(__FreeBSD__)
 #    include <sys/cachectl.h>
 #  endif
 #endif


More information about the svn-src-all mailing list