diff options
-rw-r--r-- | include/llvm/Analysis/DebugInfo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/llvm/Analysis/DebugInfo.h b/include/llvm/Analysis/DebugInfo.h index aabddb01a5..9f90f6435e 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. |