mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
Fixed a bug
git-svn-id: svn://svn.cc65.org/cc65/trunk@2861 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
6d49e06fa2
commit
5cc3e809bb
@ -209,7 +209,7 @@ INLINE int SymHasExpr (const SymEntry* S)
|
||||
return ((S->Flags & (SF_DEFINED|SF_IMPORT)) == SF_DEFINED);
|
||||
}
|
||||
#else
|
||||
# define SymHasExpr(S) (((S)->Flags & (SF_DEFINED|SF_IMPORT)) != SF_DEFINED)
|
||||
# define SymHasExpr(S) (((S)->Flags & (SF_DEFINED|SF_IMPORT)) == SF_DEFINED)
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_INLINE)
|
||||
|
Loading…
x
Reference in New Issue
Block a user