From cc7e5e63b1ada81b0c7873fd3088b814dbde10b4 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Mon, 4 Aug 2008 21:34:53 +0200 Subject: [PATCH] Make sure to initialize isBranchToLabel to zero. Fixes unittest compilation for tango.text.Text. --- gen/irstate.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gen/irstate.h b/gen/irstate.h index 6874c3ad..a3a76381 100644 --- a/gen/irstate.h +++ b/gen/irstate.h @@ -61,6 +61,9 @@ struct IRBuilderHelper struct IRAsmStmt { + IRAsmStmt() + : isBranchToLabel(NULL) {} + std::string code; std::string out_c; std::string in_c;