summaryrefslogtreecommitdiff
path: root/gcc/objc/objc-runtime-hooks.h
diff options
context:
space:
mode:
authornicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2011-02-19 01:42:17 +0000
committernicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4>2011-02-19 01:42:17 +0000
commita0aa15e7b1bd64a5d93c374db5633155d71efab5 (patch)
tree0ccc89fe6cccce803a9f9432fd4c34fe2d7852d2 /gcc/objc/objc-runtime-hooks.h
parent364306fc607459c398ddd88c56bcdc83cc90b859 (diff)
downloadgcc-a0aa15e7b1bd64a5d93c374db5633155d71efab5.tar.gz
Updated comments - no change in code
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@170298 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/objc/objc-runtime-hooks.h')
-rw-r--r--gcc/objc/objc-runtime-hooks.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/objc/objc-runtime-hooks.h b/gcc/objc/objc-runtime-hooks.h
index d071c8b771e..b325e75f9bc 100644
--- a/gcc/objc/objc-runtime-hooks.h
+++ b/gcc/objc/objc-runtime-hooks.h
@@ -25,7 +25,7 @@ along with GCC; see the file COPYING3. If not see
/* Objective-C supports several runtime library variants:
- "GNU" runtime selected by -fgnu-runtime (currently at API version 1).
+ "GNU" runtime selected by -fgnu-runtime (currently at ABI version 8).
"NeXT" runtime (selected by -fnext-runtime) and installed on OSX/Darwin
systems at API version 1 (for m32 code) and version 2 (for m64 code).
@@ -33,8 +33,11 @@ along with GCC; see the file COPYING3. If not see
and so on, and the purpose of this interface is to abstract such
differences from the parser's perspective. */
+/* TODO: Do we want the initial underscore ? */
typedef struct _objc_runtime_hooks_r
{
+ /* TODO: Expand comments in this file. */
+
/* Initialize for this runtime. */
void (*initialize) (void);
const char *default_constant_string_class_name;