Use Pmode with stack_pointer_rtx
[gcc.git] / libquadmath / math / signbitq.c
1 #include "quadmath-imp.h"
2
3
4 int
5 signbitq (const __float128 x)
6 {
7 ieee854_float128 f;
8 f.value = x;
9 return f.ieee.negative;
10 }