mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-20 14:29:27 +00:00
fix some funky indentation
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80068 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6742e34385
commit
e1f515ea59
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user