summaryrefslogtreecommitdiffstats
path: root/include/llvm/System
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/System')
-rw-r--r--include/llvm/System/Atomic.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/System/Atomic.h b/include/llvm/System/Atomic.h
index f90a8f6..adbb975 100644
--- a/include/llvm/System/Atomic.h
+++ b/include/llvm/System/Atomic.h
@@ -24,8 +24,8 @@ namespace llvm {
cas_flag CompareAndSwap(volatile cas_flag* ptr,
cas_flag new_value,
cas_flag old_value);
- cas_flag AtomicPostIncrement(volatile cas_flag* ptr);
- cas_flag AtomicPostDecrement(volatile cas_flag* ptr);
+ cas_flag AtomicIncrement(volatile cas_flag* ptr);
+ cas_flag AtomicDecrement(volatile cas_flag* ptr);
}
}