From ffdeb1eb038ff58bff5b7914f8974509e9cb6080 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Wed, 17 Jul 2013 22:52:53 +0000 Subject: 80-column fixes. llvm-svn: 186542 --- clang/lib/CodeGen/CGDebugInfo.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'clang/lib/CodeGen/CGDebugInfo.cpp') diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 8d639f5aae3..54c70051179 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -2638,7 +2638,8 @@ void CGDebugInfo::EmitDeclare(const VarDecl *VD, unsigned Tag, if (isa(VD) && ArgNo == 1) Flags |= llvm::DIDescriptor::FlagObjectPointer; if (llvm::Argument *Arg = dyn_cast(Storage)) - if (Arg->getType()->isPointerTy() && !Arg->hasByValAttr() && !VD->getType()->isPointerType()) + if (Arg->getType()->isPointerTy() && !Arg->hasByValAttr() && + !VD->getType()->isPointerType()) Flags |= llvm::DIDescriptor::FlagIndirectVariable; llvm::MDNode *Scope = LexicalBlockStack.back(); -- cgit v1.2.3