1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 03:53:04 +02:00

fix some funky indentation

llvm-svn: 80068
This commit is contained in:
Chris Lattner 2009-08-26 04:21:30 +00:00
parent 982f304aac
commit 52948143d2

View File

@ -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.