Change order of initialization.

Patch by Stephen Wilson!

llvm-svn: 107623
This commit is contained in:
Eric Christopher 2010-07-05 19:13:23 +00:00
parent d5ac287140
commit 2159b4ae6d
1 changed files with 2 additions and 2 deletions

View File

@ -20,9 +20,9 @@ LineEntry::LineEntry() :
column(0),
is_start_of_statement(0),
is_start_of_basic_block(0),
is_terminal_entry(0),
is_prologue_end(0),
is_epilogue_begin(0)
is_epilogue_begin(0),
is_terminal_entry(0)
{
}