commit | cdcb156c0b35a54fd61c4adf52077c10d6e1cdfd | [log] [tgz] |
---|---|---|
author | Eric Christopher <echristo@apple.com> | Mon Jul 05 19:13:23 2010 +0000 |
committer | Eric Christopher <echristo@apple.com> | Mon Jul 05 19:13:23 2010 +0000 |
tree | 2d65e180d5c574e3da86b0edacf45d79c46e0cce | |
parent | f8c723bbc3fed0e4338c5404fffc9ac3c91a4f92 [diff] [blame] |
Change order of initialization. Patch by Stephen Wilson! git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@107623 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Symbol/LineEntry.cpp b/source/Symbol/LineEntry.cpp index fb362b9..83c50f2 100644 --- a/source/Symbol/LineEntry.cpp +++ b/source/Symbol/LineEntry.cpp
@@ -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) { }