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

llvm-svn: 112985
This commit is contained in:
Benjamin Kramer 2010-09-03 18:20:07 +00:00
parent 0d5372679c
commit 6b7393017e
1 changed files with 2 additions and 2 deletions

View File

@ -405,7 +405,7 @@ ProcessGDBRemote::DoLaunch
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 @@ ProcessGDBRemote::DoLaunch
NULL, //stdin_path,
LLDB_INVALID_PROCESS_ID,
NULL, false,
launch_flags & eLaunchFlagDisableASLR != 0,
(launch_flags & eLaunchFlagDisableASLR) != 0,
inferior_arch);
if (error.Fail())
return error;