greenhills: fix macro undefined warning
AS: modlib/modlib_globals.S "modlib/modlib_globals.S", line 38: warning #193-D: zero used for undefined
preprocessing identifier "__SIZEOF_POINTER__"
#if __SIZEOF_POINTER__ == 8
^
Signed-off-by: guoshichao <guoshichao@xiaomi.com>
This commit is contained in:
parent
a9e2942d8f
commit
04f5aaebfa
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@
|
|||
.endm
|
||||
#endif
|
||||
|
||||
#if __SIZEOF_POINTER__ == 8
|
||||
#if defined(__SIZEOF_POINTER__ ) && __SIZEOF_POINTER__ == 8
|
||||
.macro globalEntry index, ep
|
||||
.quad .l\index
|
||||
.quad \ep
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue