Exit if the command line is started with "--help".

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@116180 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/tools/driver/Driver.cpp b/tools/driver/Driver.cpp
index b3b1081..13f7fc6 100644
--- a/tools/driver/Driver.cpp
+++ b/tools/driver/Driver.cpp
@@ -651,6 +651,7 @@
     if (error.Fail() || m_option_data.m_print_help)
     {
         ShowUsage (out_fh, g_options, m_option_data);
+        exit = true;
     }
     else if (m_option_data.m_print_version)
     {