From: Eric Christopher Date: Fri, 26 Jul 2013 21:16:25 +0000 (+0000) Subject: Use more parens to clarify assert. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=388d3225dd26d5ebe1eaf4d993eff8cf602c258f;p=oota-llvm.git Use more parens to clarify assert. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187247 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index 5c70a21fd81..58f054cf9fb 100644 --- a/lib/IR/DebugInfo.cpp +++ b/lib/IR/DebugInfo.cpp @@ -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(); }