diff options
author | Nicola Pero <nicola.pero@meta-innovation.com> | 2011-02-19 01:42:17 +0000 |
---|---|---|
committer | Nicola Pero <nicola@gcc.gnu.org> | 2011-02-19 01:42:17 +0000 |
commit | d4c433f96c2a31f5bd15dc710f8ce3ff14e54699 (patch) | |
tree | 0ccc89fe6cccce803a9f9432fd4c34fe2d7852d2 /gcc/objc/objc-runtime-hooks.h | |
parent | f6c51fa7a10e886688c49e3bae655ac20914d1bf (diff) | |
download | gcc-d4c433f96c2a31f5bd15dc710f8ce3ff14e54699.zip gcc-d4c433f96c2a31f5bd15dc710f8ce3ff14e54699.tar.gz gcc-d4c433f96c2a31f5bd15dc710f8ce3ff14e54699.tar.bz2 |
Updated comments - no change in code
From-SVN: r170298
Diffstat (limited to 'gcc/objc/objc-runtime-hooks.h')
-rw-r--r-- | gcc/objc/objc-runtime-hooks.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/objc/objc-runtime-hooks.h b/gcc/objc/objc-runtime-hooks.h index d071c8b..b325e75 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; |