diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-26 04:21:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-26 04:21:30 +0000 |
commit | e1f515ea59df5cb989c371604bba2271e6f3ee0d (patch) | |
tree | 3e530cefdc8b37e386dde5e08d3e21354dc494fd /include | |
parent | 6742e34385bff89b897ef0fc930c4bca9e75ac4a (diff) | |
download | external_llvm-e1f515ea59df5cb989c371604bba2271e6f3ee0d.zip external_llvm-e1f515ea59df5cb989c371604bba2271e6f3ee0d.tar.gz external_llvm-e1f515ea59df5cb989c371604bba2271e6f3ee0d.tar.bz2 |
fix some funky indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-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 aabddb0..9f90f64 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. |