[Lldb-commits] [lldb] r107623 - /lldb/trunk/source/Symbol/LineEntry.cpp

Eric Christopher echristo at apple.com
Mon Jul 5 12:13:24 PDT 2010


Author: echristo
Date: Mon Jul  5 14:13:23 2010
New Revision: 107623

URL: http://llvm.org/viewvc/llvm-project?rev=107623&view=rev
Log:
Change order of initialization.

Patch by Stephen Wilson!

Modified:
    lldb/trunk/source/Symbol/LineEntry.cpp

Modified: lldb/trunk/source/Symbol/LineEntry.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/LineEntry.cpp?rev=107623&r1=107622&r2=107623&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/LineEntry.cpp (original)
+++ lldb/trunk/source/Symbol/LineEntry.cpp Mon Jul  5 14:13:23 2010
@@ -20,9 +20,9 @@
     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)
 {
 }
 





More information about the lldb-commits mailing list