|
From: <sv...@va...> - 2012-10-02 20:35:34
|
philippe 2012-10-02 21:35:21 +0100 (Tue, 02 Oct 2012)
New Revision: 13017
Log:
Unbreak build on ppc64 (error: ‘EmWarn_PPC64_redir_underflow’ undeclared)
coregrind/m_translate.c does not compile on ppc64 (ppc32 maybe also?)
due to missing include file.
Note: libvex_emnote.h is unconditionally included, even if only
useful for ppc. I suppose we do not want #ifdef for that.
Modified files:
trunk/coregrind/m_translate.c
Modified: trunk/coregrind/m_translate.c (+2 -0)
===================================================================
--- trunk/coregrind/m_translate.c 2012-09-30 21:30:40 +01:00 (rev 13016)
+++ trunk/coregrind/m_translate.c 2012-10-02 21:35:21 +01:00 (rev 13017)
@@ -61,6 +61,8 @@
#include "pub_core_gdbserver.h" // VG_(tool_instrument_then_gdbserver_if_needed)
+#include "libvex_emnote.h" // For PPC, EmWarn_PPC64_redir_underflow
+
/*------------------------------------------------------------*/
/*--- Stats ---*/
/*------------------------------------------------------------*/
|