Change crash handling to use eStateStopped rather than eStateCrashed.

git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@170224 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/POSIX/ProcessPOSIX.cpp b/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
index 8001db2..f6b9270 100644
--- a/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
+++ b/source/Plugins/Process/POSIX/ProcessPOSIX.cpp
@@ -353,7 +353,8 @@
         break;
 
     case ProcessMessage::eCrashMessage:
-        SetPrivateState(eStateCrashed);
+        // FIXME: Update stop reason as per bugzilla 14598
+        SetPrivateState(eStateStopped);
         break;
     }