Use more parens to clarify assert.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187247 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-07-26 21:16:25 +00:00
parent 0be31910e0
commit 388d3225dd

View File

@ -711,7 +711,7 @@ DIScope DIScope::getContext() const {
if (isNameSpace())
return DINameSpace(DbgNode).getContext();
assert(isFile() || isCompileUnit() && "Unhandled type of scope.");
assert((isFile() || isCompileUnit()) && "Unhandled type of scope.");
return DIScope();
}