mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-06 05:33:28 +00:00
whitespace
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141572 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
717073c237
commit
b35e4e8472
@ -54,7 +54,7 @@ public:
|
|||||||
Value = Val;
|
Value = Val;
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator++() {
|
const Statistic &operator++() {
|
||||||
// FIXME: This function and all those that follow carefully use an
|
// FIXME: This function and all those that follow carefully use an
|
||||||
// atomic operation to update the value safely in the presence of
|
// atomic operation to update the value safely in the presence of
|
||||||
@ -63,41 +63,41 @@ public:
|
|||||||
sys::AtomicIncrement(&Value);
|
sys::AtomicIncrement(&Value);
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned operator++(int) {
|
unsigned operator++(int) {
|
||||||
init();
|
init();
|
||||||
unsigned OldValue = Value;
|
unsigned OldValue = Value;
|
||||||
sys::AtomicIncrement(&Value);
|
sys::AtomicIncrement(&Value);
|
||||||
return OldValue;
|
return OldValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator--() {
|
const Statistic &operator--() {
|
||||||
sys::AtomicDecrement(&Value);
|
sys::AtomicDecrement(&Value);
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned operator--(int) {
|
unsigned operator--(int) {
|
||||||
init();
|
init();
|
||||||
unsigned OldValue = Value;
|
unsigned OldValue = Value;
|
||||||
sys::AtomicDecrement(&Value);
|
sys::AtomicDecrement(&Value);
|
||||||
return OldValue;
|
return OldValue;
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator+=(const unsigned &V) {
|
const Statistic &operator+=(const unsigned &V) {
|
||||||
sys::AtomicAdd(&Value, V);
|
sys::AtomicAdd(&Value, V);
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator-=(const unsigned &V) {
|
const Statistic &operator-=(const unsigned &V) {
|
||||||
sys::AtomicAdd(&Value, -V);
|
sys::AtomicAdd(&Value, -V);
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator*=(const unsigned &V) {
|
const Statistic &operator*=(const unsigned &V) {
|
||||||
sys::AtomicMul(&Value, V);
|
sys::AtomicMul(&Value, V);
|
||||||
return init();
|
return init();
|
||||||
}
|
}
|
||||||
|
|
||||||
const Statistic &operator/=(const unsigned &V) {
|
const Statistic &operator/=(const unsigned &V) {
|
||||||
sys::AtomicDiv(&Value, V);
|
sys::AtomicDiv(&Value, V);
|
||||||
return init();
|
return init();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user