util/kconfig/regex.c: Remove leftover
coreboot doesn't support the MIPS architecture anymore. Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I404d034949a7786d7971117081537baf27ff2e22 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67353 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Martin L Roth <gaumless@gmail.com>
This commit is contained in:
parent
a3c287d7a3
commit
3541c31add
|
@ -3098,7 +3098,6 @@ typedef union
|
||||||
|
|
||||||
|
|
||||||
/* Free everything we malloc. */
|
/* Free everything we malloc. */
|
||||||
#ifdef REGEX_MALLOC
|
|
||||||
#define FREE_VAR(var) if (var) free (var); var = NULL
|
#define FREE_VAR(var) if (var) free (var); var = NULL
|
||||||
#define FREE_VARIABLES() \
|
#define FREE_VARIABLES() \
|
||||||
do { \
|
do { \
|
||||||
|
@ -3113,10 +3112,6 @@ typedef union
|
||||||
FREE_VAR (reg_dummy); \
|
FREE_VAR (reg_dummy); \
|
||||||
FREE_VAR (reg_info_dummy); \
|
FREE_VAR (reg_info_dummy); \
|
||||||
} while (0)
|
} while (0)
|
||||||
#else /* not REGEX_MALLOC */
|
|
||||||
/* Some MIPS systems (at least) want this to free alloca'd storage. */
|
|
||||||
#define FREE_VARIABLES() alloca (0)
|
|
||||||
#endif /* not REGEX_MALLOC */
|
|
||||||
|
|
||||||
|
|
||||||
/* These values must meet several constraints. They must not be valid
|
/* These values must meet several constraints. They must not be valid
|
||||||
|
|
Loading…
Reference in New Issue