|
From: <sv...@va...> - 2011-05-28 15:39:11
|
Author: sewardj
Date: 2011-05-28 16:34:17 +0100 (Sat, 28 May 2011)
New Revision: 11782
Log:
Fix ppc64-linux build following introduction of IRStmt_Mark::delta
in vex r2153.
Modified:
trunk/coregrind/m_translate.c
Modified: trunk/coregrind/m_translate.c
===================================================================
--- trunk/coregrind/m_translate.c 2011-05-28 11:05:44 UTC (rev 11781)
+++ trunk/coregrind/m_translate.c 2011-05-28 15:34:17 UTC (rev 11782)
@@ -1096,7 +1096,7 @@
/* Since we're creating the entire IRSB right here, give it a
proper IMark, as it won't get one any other way, and cachegrind
will barf if it doesn't have one (fair enough really). */
- addStmtToIRSB( bb, IRStmt_IMark( closure->readdr, 4 ) );
+ addStmtToIRSB( bb, IRStmt_IMark( closure->readdr, 4, 0 ) );
/* Generate the magic sequence:
pop R2 from hidden stack
pop LR from hidden stack
|