Fix gcc -Wparentheses warning.

llvm-svn: 201840
This commit is contained in:
Patrik Hagglund 2014-02-21 07:23:53 +00:00
parent 31d7ad4ecf
commit ab01d4bb14
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ const FileEntry *FileManager::getFile(StringRef Filename, bool openFile,
return 0;
}
assert(openFile || !F && "undesired open file");
assert((openFile || !F) && "undesired open file");
// It exists. See if we have already opened a file with the same inode.
// This occurs when one dir is symlinked to another, for example.