Fix a build problem if ENABLE_CHECKING is not defined.
* dwarf.c (ENABLE_CHECKING): Define to 0 if not previously set.
This commit is contained in:
parent
83b0a6865c
commit
c485e47599
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2021-05-19 Eli Schwartz <eschwartz@archlinux.org>
|
||||
|
||||
* dwarf.c (ENABLE_CHECKING): Define to 0 if not previously set.
|
||||
|
||||
2021-05-19 Alan Modra <amodra@gmail.com>
|
||||
|
||||
PR 27884
|
||||
|
|
|
@ -41,6 +41,10 @@
|
|||
#define CHAR_BIT 8
|
||||
#endif
|
||||
|
||||
#ifndef ENABLE_CHECKING
|
||||
#define ENABLE_CHECKING 0
|
||||
#endif
|
||||
|
||||
#undef MAX
|
||||
#undef MIN
|
||||
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue