mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 05:32:28 +00:00
9 lines
168 B
C
9 lines
168 B
C
__attribute__((always_inline)) inline long lrint(double x)
|
|
{
|
|
long value;
|
|
__asm (" fmove%.l %1, %0\n\t"
|
|
: "=d" (value)
|
|
: "f" (x));
|
|
return value;
|
|
|
|
}
|