|
From: <sv...@va...> - 2017-03-12 07:59:32
|
Author: iraisr
Date: Sun Mar 12 07:59:25 2017
New Revision: 3313
Log:
Forgotten id_seq in flatten_BB
Modified:
branches/VEX_JIT_HACKS/priv/ir_opt.c
Modified: branches/VEX_JIT_HACKS/priv/ir_opt.c
==============================================================================
--- branches/VEX_JIT_HACKS/priv/ir_opt.c (original)
+++ branches/VEX_JIT_HACKS/priv/ir_opt.c Sun Mar 12 07:59:25 2017
@@ -538,6 +538,7 @@
static IRSB* flatten_BB ( IRSB* in )
{
IRSB* out = emptyIRSB();
+ out->id_seq = in->id_seq;
out->stmts = flatten_IRStmtVec(in->stmts, NULL);
out->next = flatten_Expr(out->stmts, in->next);
out->jumpkind = in->jumpkind;
|