swh:1:snp:173f8deb0c56c557784b4fd217e7608ac6197844
Raw File
Tip revision: 2c85ebc57b3e1817b6ce1a6b703928e113a90442 authored by Linus Torvalds on 13 December 2020, 22:41:30 UTC
Linux 5.10
Tip revision: 2c85ebc
fcmps.c
// SPDX-License-Identifier: GPL-2.0
// Copyright (C) 2005-2018 Andes Technology Corporation
#include <asm/sfp-machine.h>
#include <math-emu/soft-fp.h>
#include <math-emu/single.h>
int fcmps(void *ft, void *fa, void *fb, int cmpop)
{
	FP_DECL_S(A);
	FP_DECL_S(B);
	FP_DECL_EX;
	long cmp;

	FP_UNPACK_SP(A, fa);
	FP_UNPACK_SP(B, fb);

	FP_CMP_S(cmp, A, B, SF_CUN);
	cmp += 2;
	if (cmp == SF_CGT)
		*(int *)ft = 0x0;
	else
		*(int *)ft = (cmp & cmpop) ? 0x1 : 0x0;

	return 0;
}
back to top