[compiler-rt] r362149 - Attempt to fix 'mutex.h' not found when building mutex_posix.
Mitch Phillips via llvm-commits
llvm-commits at lists.llvm.org
Thu May 30 13:48:05 PDT 2019
Author: hctim
Date: Thu May 30 13:48:05 2019
New Revision: 362149
URL: http://llvm.org/viewvc/llvm-project?rev=362149&view=rev
Log:
Attempt to fix 'mutex.h' not found when building mutex_posix.
Modified:
compiler-rt/trunk/lib/gwp_asan/platform_specific/mutex_posix.cpp
Modified: compiler-rt/trunk/lib/gwp_asan/platform_specific/mutex_posix.cpp
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/gwp_asan/platform_specific/mutex_posix.cpp?rev=362149&r1=362148&r2=362149&view=diff
==============================================================================
--- compiler-rt/trunk/lib/gwp_asan/platform_specific/mutex_posix.cpp (original)
+++ compiler-rt/trunk/lib/gwp_asan/platform_specific/mutex_posix.cpp Thu May 30 13:48:05 2019
@@ -6,7 +6,7 @@
//
//===----------------------------------------------------------------------===//
-#include "mutex.h"
+#include "gwp_asan/mutex.h"
#include <assert.h>
#include <pthread.h>
More information about the llvm-commits
mailing list