From e1f515ea59df5cb989c371604bba2271e6f3ee0d Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 26 Aug 2009 04:21:30 +0000 Subject: [PATCH] fix some funky indentation git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Analysis/DebugInfo.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index aabddb01a5b..9f90f6435ee 100644 --- a/include/llvm/Analysis/DebugInfo.h +++ b/include/llvm/Analysis/DebugInfo.h @@ -218,17 +218,17 @@ namespace llvm { // carry this is just plain insane. uint64_t getOffsetInBits() const { return getUInt64Field(7); } unsigned getFlags() const { return getUnsignedField(8); } - bool isPrivate() const { return - (getFlags() & FlagPrivate) != 0; + bool isPrivate() const { + return (getFlags() & FlagPrivate) != 0; } - bool isProtected() const { + bool isProtected() const { return (getFlags() & FlagProtected) != 0; } - bool isForwardDecl() const { - return (getFlags() & FlagFwdDecl) != 0; + bool isForwardDecl() const { + return (getFlags() & FlagFwdDecl) != 0; } - bool isClosure() const { - return (getFlags() & FlagClosure) != 0; + bool isClosure() const { + return (getFlags() & FlagClosure) != 0; } /// dump - print type.