From c7d5d75014c6870a3a470ebde1d81c8cf1c22bf7 Mon Sep 17 00:00:00 2001 From: David Mak Date: Tue, 19 Sep 2023 07:22:40 +0800 Subject: [PATCH] core: Replace deprecated _ExtInt with _BitInt --- nac3core/src/codegen/irrt/irrt.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nac3core/src/codegen/irrt/irrt.c b/nac3core/src/codegen/irrt/irrt.c index ba250dc..a3e282e 100644 --- a/nac3core/src/codegen/irrt/irrt.c +++ b/nac3core/src/codegen/irrt/irrt.c @@ -1,9 +1,9 @@ -typedef _ExtInt(8) int8_t; -typedef unsigned _ExtInt(8) uint8_t; -typedef _ExtInt(32) int32_t; -typedef unsigned _ExtInt(32) uint32_t; -typedef _ExtInt(64) int64_t; -typedef unsigned _ExtInt(64) uint64_t; +typedef _BitInt(8) int8_t; +typedef unsigned _BitInt(8) uint8_t; +typedef _BitInt(32) int32_t; +typedef unsigned _BitInt(32) uint32_t; +typedef _BitInt(64) int64_t; +typedef unsigned _BitInt(64) uint64_t; # define MAX(a, b) (a > b ? a : b) # define MIN(a, b) (a > b ? b : a)