diff options
-rw-r--r-- | gcc/real.c | 6 | ||||
-rw-r--r-- | gcc/testsuite/g++.dg/cpp2a/nontype-float2.C | 14 |
2 files changed, 18 insertions, 2 deletions
diff --git a/gcc/real.c b/gcc/real.c index 555cf44c142..8c7a47a69e6 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -3150,9 +3150,10 @@ encode_ieee_double (const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) { unsigned long image_lo, image_hi, sig_lo, sig_hi, exp; + unsigned long sign = r->sign; bool denormal = (r->sig[SIGSZ-1] & SIG_MSB) == 0; - image_hi = r->sign << 31; + image_hi = sign << 31; image_lo = 0; if (HOST_BITS_PER_LONG == 64) @@ -3938,10 +3939,11 @@ encode_ieee_quad (const struct real_format *fmt, long *buf, const REAL_VALUE_TYPE *r) { unsigned long image3, image2, image1, image0, exp; + unsigned long sign = r->sign; bool denormal = (r->sig[SIGSZ-1] & SIG_MSB) == 0; REAL_VALUE_TYPE u; - image3 = r->sign << 31; + image3 = sign << 31; image2 = 0; image1 = 0; image0 = 0; diff --git a/gcc/testsuite/g++.dg/cpp2a/nontype-float2.C b/gcc/testsuite/g++.dg/cpp2a/nontype-float2.C new file mode 100644 index 00000000000..40b42b923ec --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp2a/nontype-float2.C @@ -0,0 +1,14 @@ +// PR c++/98216 +// PR c++/91292 +// { dg-do compile { target c++20 } } + +template<auto> void f() { } + +template void f<-1.0f>(); +template void f<-2.0f>(); + +template void f<-1.0>(); +template void f<-2.0>(); + +template void f<-1.0L>(); +template void f<-2.0L>(); |