Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Jan 2018 08:04:55 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r327993 - stable/11/contrib/llvm/lib/Support/Unix
Message-ID:  <201801150804.w0F84t5a025830@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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