summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CGObjCRuntime.h
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2012-12-17 18:02:43 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2012-12-17 18:02:43 +0000
commite315cb3b30a0461ae501f8942f9d012bbeee3f90 (patch)
tree33aeefdc50fc77eda89d3bb8cccae3acf5cba64d /lib/CodeGen/CGObjCRuntime.h
parent648dd82196b09953c029d15679e32a799a1b1eb6 (diff)
Revert "Added support for new property helpers (GNUstep runtime)."
This reverts commit r170344. Doesn't even compile. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGObjCRuntime.h')
-rw-r--r--lib/CodeGen/CGObjCRuntime.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/CodeGen/CGObjCRuntime.h b/lib/CodeGen/CGObjCRuntime.h
index 584bf6738f..934464b9e5 100644
--- a/lib/CodeGen/CGObjCRuntime.h
+++ b/lib/CodeGen/CGObjCRuntime.h
@@ -209,12 +209,9 @@ public:
virtual llvm::Constant *GetGetStructFunction() = 0;
// API for atomic copying of qualified aggregates in setter.
virtual llvm::Constant *GetSetStructFunction() = 0;
- /// API for atomic copying of qualified aggregates with non-trivial copy
- /// assignment (c++) in setter.
- virtual llvm::Constant *GetCppAtomicObjectSetFunction() = 0;
- /// API for atomic copying of qualified aggregates with non-trivial copy
- /// assignment (c++) in getter.
- virtual llvm::Constant *GetCppAtomicObjectGetFunction() = 0;
+ // API for atomic copying of qualified aggregates with non-trivial copy
+ // assignment (c++) in setter/getter.
+ virtual llvm::Constant *GetCppAtomicObjectFunction() = 0;
/// GetClass - Return a reference to the class for the given
/// interface decl.