diff options
author | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-19 01:42:17 +0000 |
---|---|---|
committer | nicola <nicola@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-02-19 01:42:17 +0000 |
commit | a0aa15e7b1bd64a5d93c374db5633155d71efab5 (patch) | |
tree | 0ccc89fe6cccce803a9f9432fd4c34fe2d7852d2 /gcc/objc/objc-runtime-shared-support.c | |
parent | 364306fc607459c398ddd88c56bcdc83cc90b859 (diff) | |
download | ppe42-gcc-a0aa15e7b1bd64a5d93c374db5633155d71efab5.tar.gz ppe42-gcc-a0aa15e7b1bd64a5d93c374db5633155d71efab5.zip |
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-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 dff1d467391..8dca6ccae9f 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. */ |