diff options
author | Eric Christopher <echristo@apple.com> | 2010-07-05 19:13:23 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-07-05 19:13:23 +0000 |
commit | 2159b4ae6dc53071f0aa4fdf0ed5f7cceec0de9b (patch) | |
tree | ab55d14d01122d9f35b9274fcb6e19c47255b10c /lldb/source | |
parent | d5ac2871407500c14dfb1b50d81b03c961e70f5f (diff) | |
download | bcm5719-llvm-2159b4ae6dc53071f0aa4fdf0ed5f7cceec0de9b.tar.gz bcm5719-llvm-2159b4ae6dc53071f0aa4fdf0ed5f7cceec0de9b.zip |
Change order of initialization.
Patch by Stephen Wilson!
llvm-svn: 107623
Diffstat (limited to 'lldb/source')
-rw-r--r-- | lldb/source/Symbol/LineEntry.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Symbol/LineEntry.cpp b/lldb/source/Symbol/LineEntry.cpp index fb362b9d295..83c50f231fa 100644 --- a/lldb/source/Symbol/LineEntry.cpp +++ b/lldb/source/Symbol/LineEntry.cpp @@ -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) { } |