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 | c1be2306e67fd5bea70cb04f91d1095de963a24b (patch) | |
| tree | 009d2ba7d925c62aefd4492eb6a225c30f0eee58 /llvm | |
| parent | 066d0f93bf700fc0444adc67e2e949034e690f4f (diff) | |
| download | bcm5719-llvm-c1be2306e67fd5bea70cb04f91d1095de963a24b.tar.gz bcm5719-llvm-c1be2306e67fd5bea70cb04f91d1095de963a24b.zip | |
fix some funky indentation
llvm-svn: 80068
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Analysis/DebugInfo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/llvm/include/llvm/Analysis/DebugInfo.h b/llvm/include/llvm/Analysis/DebugInfo.h index aabddb01a5b..9f90f6435ee 100644 --- a/llvm/include/llvm/Analysis/DebugInfo.h +++ b/llvm/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. |

