diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-11 02:20:01 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-11 02:20:01 +0000 |
commit | 276b061970939293f1abaf694bd3ef05b2cbda79 (patch) | |
tree | 95ac74efe0dda24d43635e5d034868d1379b6752 /lib/CodeGen/CodeGenFunction.h | |
parent | f11dbe9676832e599e046b2ed0f132a6bb858e0a (diff) |
Initial implementation of __atomic_* (everything except __atomic_is_lock_free).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141632 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.h')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenFunction.h b/lib/CodeGen/CodeGenFunction.h index e53ed30256..157623da8f 100644 --- a/lib/CodeGen/CodeGenFunction.h +++ b/lib/CodeGen/CodeGenFunction.h @@ -2283,6 +2283,8 @@ public: void EmitCXXThrowExpr(const CXXThrowExpr *E); + RValue EmitAtomicExpr(AtomicExpr *E, llvm::Value *Dest = 0); + //===--------------------------------------------------------------------===// // Annotations Emission //===--------------------------------------------------------------------===// |