Skip to content

Commit

Permalink
tricore : fix
Browse files Browse the repository at this point in the history
  • Loading branch information
imbillow committed May 31, 2024
1 parent bb60bf0 commit ec9ad3a
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions librz/arch/isa/tricore/tricore_il_fp.inc
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
// SPDX-FileCopyrightText: 2024 billow <[email protected]>
// SPDX-License-Identifier: LGPL-3.0-only

// static const ut32 ADD_NAN __attribute__((unused)) = 0x7fc00001;
// static const ut32 DIV_NAN __attribute__((unused)) = 0x7fc00008;
// static const ut32 MUL_NAN __attribute__((unused)) = 0x7fc00002;
// static const ut32 SQRT_NAN __attribute__((unused)) = 0x7fc00004;
//
static const ut32 HP_MAX_VALUE __attribute__((unused)) = 65504;
static const ut32 HP_MIN_NORMAL __attribute__((unused)) = 1024 * 16;
static const ut32 HP_MAX_VALUE = 65504;
static const ut32 HP_MIN_NORMAL = 1024 * 16;

static const ut32 HP_NEG_INFINITY = 0xfc00;
static const ut32 HP_POS_INFINITY = 0x7c00;

// static const ut32 NEG_INFINITY __attribute__((unused)) = 0xff800000;
// static const ut32 POS_INFINITY __attribute__((unused)) = 0x7f800000;

#define F2SINT32(x, m) F2SINT(32, m, x)

#define denorm_to_zere_(T, x) \
Expand Down

0 comments on commit ec9ad3a

Please sign in to comment.