From 2b393fb134c621a7f0824eaea35ad94eae7da062 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 27 Mar 2013 15:03:14 +0000 Subject: [PATCH] Silence warning about mixing || in &&, fix up 80-cols. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@178144 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/IR/DebugInfo.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/IR/DebugInfo.cpp b/lib/IR/DebugInfo.cpp index 80563e905f0..f703bd2f7a6 100644 --- a/lib/IR/DebugInfo.cpp +++ b/lib/IR/DebugInfo.cpp @@ -631,7 +631,9 @@ MDNode *DIDerivedType::getObjCProperty() const { /// \brief Set the array of member DITypes. void DICompositeType::setTypeArray(DIArray Elements, DIArray TParams) { - assert(!TParams || DbgNode->getNumOperands() == 15 && "If you're setting the template parameters this should include a slot for that"); + assert((!TParams || DbgNode->getNumOperands() == 15) && + "If you're setting the template parameters this should include a slot " + "for that!"); TrackingVH N(*this); N->replaceOperandWith(11, Elements); if (TParams)