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-shared-support.c | |
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-shared-support.c')
-rw-r--r-- | gcc/objc/objc-runtime-shared-support.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/objc/objc-runtime-shared-support.c b/gcc/objc/objc-runtime-shared-support.c index dff1d46..8dca6cc 100644 --- a/gcc/objc/objc-runtime-shared-support.c +++ b/gcc/objc/objc-runtime-shared-support.c @@ -507,7 +507,10 @@ build_module_descriptor (long vers, tree attr) /* Create an instance of "_objc_module". */ UOBJC_MODULES_decl = start_var_decl (objc_module_template, - flag_next_runtime ? "_OBJC_Module" : "_OBJC_Module"); + /* FIXME - why the conditional + if the symbol is the + same. */ + flag_next_runtime ? "_OBJC_Module" : "_OBJC_Module"); /* This is the root of the metadata for defined classes and categories, it is referenced by the runtime and, therefore, needed. */ |