forked from OSchip/llvm-project
Change order of initialization.
Patch by Stephen Wilson! llvm-svn: 107623
This commit is contained in:
parent
d5ac287140
commit
2159b4ae6d
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue