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
MFC after:	3 days
This commit is contained in:
Dimitry Andric 2018-01-11 21:12:23 +00:00
parent ce076a1f58
commit 76401e35e3

View File

@ -27,7 +27,7 @@
#if defined(__mips__)
# if defined(__OpenBSD__)
# include <mips64/sysarch.h>
# else
# elif !defined(__FreeBSD__)
# include <sys/cachectl.h>
# endif
#endif