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

llvm-svn: 112985
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index de94192..aa3cf6b 100644
--- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/lldb/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;