diff options
author | Eric Christopher <echristo@gmail.com> | 2013-07-17 22:52:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-07-17 22:52:53 +0000 |
commit | ffdeb1eb038ff58bff5b7914f8974509e9cb6080 (patch) | |
tree | 3303166597eb40d4de5850290bb1f4988b7f5a8a /clang/lib | |
parent | 43639e8492225d7598a6bb20a41d2244dbb33eaf (diff) | |
download | bcm5719-llvm-ffdeb1eb038ff58bff5b7914f8974509e9cb6080.tar.gz bcm5719-llvm-ffdeb1eb038ff58bff5b7914f8974509e9cb6080.zip |
80-column fixes.
llvm-svn: 186542
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
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<ImplicitParamDecl>(VD) && ArgNo == 1) Flags |= llvm::DIDescriptor::FlagObjectPointer; if (llvm::Argument *Arg = dyn_cast<llvm::Argument>(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(); |