aboutsummaryrefslogtreecommitdiff
path: root/gcc/stub-objc.c
diff options
context:
space:
mode:
authorZiemowit Laski <zlaski@apple.com>2004-10-31 06:17:55 +0000
committerZiemowit Laski <zlaski@gcc.gnu.org>2004-10-31 06:17:55 +0000
commit16b34ad6620d4c6c692bdc5c739ba4241987d346 (patch)
treefd41069a69da16dfa7e8da375572cb0cbfc16ce8 /gcc/stub-objc.c
parent7fe63418838e0fade217715817d1349e206d5117 (diff)
downloadgcc-16b34ad6620d4c6c692bdc5c739ba4241987d346.zip
gcc-16b34ad6620d4c6c692bdc5c739ba4241987d346.tar.gz
gcc-16b34ad6620d4c6c692bdc5c739ba4241987d346.tar.bz2
c-common.h (objc_lookup_ivar): Add second parameter to prototype.
[gcc/ChangeLog] 2004-10-30 Ziemowit Laski <zlaski@apple.com> * c-common.h (objc_lookup_ivar): Add second parameter to prototype. * c-typeck.c (build_external_ref): After looking up symbol, pass it to objc_lookup_ivar() to decide whether it or the ivar should be used, rather than deciding the issue locally. * stub-objc.c (objc_lookup_ivar): Add an OTHER parameter, which is simply returned in the non-ObjC case. [gcc/objc/ChangeLog] 2004-10-30 Ziemowit Laski <zlaski@apple.com> * objc-act.c (objc_lookup_ivar): The new OTHER parameter contains the result of the ID lookup by the C or C++ front-end; in class methods, use OTHER if it exists; in instance methods, use OTHER only if it is locally declared. [gcc/testsuite/ChangeLog] 2004-10-30 Ziemowit Laski <zlaski@apple.com> * objc.dg/local-decl-1.m: New test. From-SVN: r89912
Diffstat (limited to 'gcc/stub-objc.c')
-rw-r--r--gcc/stub-objc.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/stub-objc.c b/gcc/stub-objc.c
index 9e874a2..f01fd9b 100644
--- a/gcc/stub-objc.c
+++ b/gcc/stub-objc.c
@@ -46,9 +46,10 @@ objc_is_object_ptr (tree ARG_UNUSED (arg))
}
tree
-objc_lookup_ivar (tree ARG_UNUSED (arg))
+objc_lookup_ivar (tree other, tree ARG_UNUSED (arg))
{
- return 0;
+ /* Just use whatever C/C++ found. */
+ return other;
}
void