mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Removed explicit inline as per the LLVM style guide.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174432 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b48783b091
commit
da6bf1d8bb
@ -451,31 +451,31 @@ namespace {
|
||||
PtrState() : KnownPositiveRefCount(false), Partial(false),
|
||||
Seq(S_None) {}
|
||||
|
||||
inline void SetKnownPositiveRefCount() {
|
||||
void SetKnownPositiveRefCount() {
|
||||
KnownPositiveRefCount = true;
|
||||
}
|
||||
|
||||
inline void ClearRefCount() {
|
||||
void ClearRefCount() {
|
||||
KnownPositiveRefCount = false;
|
||||
}
|
||||
|
||||
inline bool IsKnownIncremented() const {
|
||||
bool IsKnownIncremented() const {
|
||||
return KnownPositiveRefCount;
|
||||
}
|
||||
|
||||
inline void SetSeq(Sequence NewSeq) {
|
||||
void SetSeq(Sequence NewSeq) {
|
||||
Seq = NewSeq;
|
||||
}
|
||||
|
||||
inline Sequence GetSeq() const {
|
||||
Sequence GetSeq() const {
|
||||
return Seq;
|
||||
}
|
||||
|
||||
inline void ClearSequenceProgress() {
|
||||
void ClearSequenceProgress() {
|
||||
ResetSequenceProgress(S_None);
|
||||
}
|
||||
|
||||
inline void ResetSequenceProgress(Sequence NewSeq) {
|
||||
void ResetSequenceProgress(Sequence NewSeq) {
|
||||
Seq = NewSeq;
|
||||
Partial = false;
|
||||
RRI.clear();
|
||||
|
Loading…
Reference in New Issue
Block a user