summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-08-26 04:21:30 +0000
committerChris Lattner <sabre@nondot.org>2009-08-26 04:21:30 +0000
commitc1be2306e67fd5bea70cb04f91d1095de963a24b (patch)
tree009d2ba7d925c62aefd4492eb6a225c30f0eee58 /llvm
parent066d0f93bf700fc0444adc67e2e949034e690f4f (diff)
downloadbcm5719-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.h14
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.
OpenPOWER on IntegriCloud