[compiler-rt] r290083 - [XRay][compiler-rt] Fix missing include of <cerrno>

Dean Michael Berris via llvm-commits llvm-commits at lists.llvm.org
Sun Dec 18 21:26:15 PST 2016


Author: dberris
Date: Sun Dec 18 23:26:14 2016
New Revision: 290083

URL: http://llvm.org/viewvc/llvm-project?rev=290083&view=rev
Log:
[XRay][compiler-rt] Fix missing include of <cerrno>

Futher attempt to un-break ARM and AArch64 build.

Follow-up on D25360.

Modified:
    compiler-rt/trunk/lib/xray/xray_emulate_tsc.h

Modified: compiler-rt/trunk/lib/xray/xray_emulate_tsc.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/xray/xray_emulate_tsc.h?rev=290083&r1=290082&r2=290083&view=diff
==============================================================================
--- compiler-rt/trunk/lib/xray/xray_emulate_tsc.h (original)
+++ compiler-rt/trunk/lib/xray/xray_emulate_tsc.h Sun Dec 18 23:26:14 2016
@@ -15,6 +15,7 @@
 
 #include "sanitizer_common/sanitizer_internal_defs.h"
 #include "xray_defs.h"
+#include <cerrno>
 #include <cstdint>
 #include <time.h>
 




More information about the llvm-commits mailing list