Pacify operator precedence warnings. No functionality change because eLaunchFlagDisableASLR happens to be 1.

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@112985 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index de94192..aa3cf6b 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -405,7 +405,7 @@
                                              NULL, //stdin_path,
                                              LLDB_INVALID_PROCESS_ID,
                                              NULL, false,
-                                             launch_flags & eLaunchFlagDisableASLR != 0,
+                                             (launch_flags & eLaunchFlagDisableASLR) != 0,
                                              inferior_arch);
             if (error.Fail())
                 return error;
@@ -424,7 +424,7 @@
                                              NULL, //stdin_path,
                                              LLDB_INVALID_PROCESS_ID,
                                              NULL, false,
-                                             launch_flags & eLaunchFlagDisableASLR != 0,
+                                             (launch_flags & eLaunchFlagDisableASLR) != 0,
                                              inferior_arch);
             if (error.Fail())
                 return error;