From e74cf2f544096748c90a91f5de935f9d68f90676 Mon Sep 17 00:00:00 2001 From: johanknol Date: Sat, 8 Sep 2001 10:57:24 +0000 Subject: [PATCH] undid my latest fix for bug #436344 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1242 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCsymt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/SDCCsymt.c b/src/SDCCsymt.c index 382836fb..b145bbe6 100644 --- a/src/SDCCsymt.c +++ b/src/SDCCsymt.c @@ -318,7 +318,8 @@ pointerTypes (sym_link * ptr, sym_link * type) ptr = ptr->next; /* could not find it */ - if (!ptr || IS_SPEC (ptr)) + if (!ptr || IS_SPEC (ptr) || + DCL_TYPE(ptr)!=UPOINTER) return; /* change the pointer type depending on the -- 2.47.2