[llvm-commits] [llvm] r80068 - /llvm/trunk/include/llvm/Analysis/DebugInfo.h
Chris Lattner
sabre at nondot.org
Tue Aug 25 21:21:30 PDT 2009
Author: lattner
Date: Tue Aug 25 23:21:30 2009
New Revision: 80068
URL: http://llvm.org/viewvc/llvm-project?rev=80068&view=rev
Log:
fix some funky indentation
Modified:
llvm/trunk/include/llvm/Analysis/DebugInfo.h
Modified: llvm/trunk/include/llvm/Analysis/DebugInfo.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Analysis/DebugInfo.h?rev=80068&r1=80067&r2=80068&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Analysis/DebugInfo.h (original)
+++ llvm/trunk/include/llvm/Analysis/DebugInfo.h Tue Aug 25 23:21:30 2009
@@ -218,17 +218,17 @@
// 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.
More information about the llvm-commits
mailing list