Welcome to mirror list, hosted at ThFree Co, Russian Federation.

signbit.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b27fce235b0a918dbc033fbf6fa46b95fff1448a (plain)
1
2
3
4
5
6
#include "headers/signbitd2.h"

static __inline unsigned long long _signbit(double x)
{
  return spu_extract(_signbitd2(spu_promote(x, 0)), 0);
}