# HG changeset patch # User Christian Kamm # Date 1217878493 -7200 # Node ID 253f234eb80cfb9ac58a1c0d550c4c36e3e5c1a9 # Parent 526385b6d1fdc5d6d062960559d1b9989c1217a5 Make sure to initialize isBranchToLabel to zero. Fixes unittest compilation for tango.text.Text. diff -r 526385b6d1fd -r 253f234eb80c gen/irstate.h --- a/gen/irstate.h Mon Aug 04 20:05:42 2008 +0200 +++ b/gen/irstate.h Mon Aug 04 21:34:53 2008 +0200 @@ -61,6 +61,9 @@ struct IRAsmStmt { + IRAsmStmt() + : isBranchToLabel(NULL) {} + std::string code; std::string out_c; std::string in_c;