Fix ivar ordering for Process ctor to match the order they're
declared in the .h file.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@176473 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Target/Process.cpp b/source/Target/Process.cpp
index ff42d6e..96147c3 100644
--- a/source/Target/Process.cpp
+++ b/source/Target/Process.cpp
@@ -1023,8 +1023,8 @@
     m_currently_handling_event(false),
     m_finalize_called(false),
     m_last_broadcast_state (eStateInvalid),
-    m_can_jit(eCanJITDontKnow),
-    m_destroy_in_process (false)
+    m_destroy_in_process (false),
+    m_can_jit(eCanJITDontKnow)
 {
     CheckInWithManager ();