mirror of git://gcc.gnu.org/git/gcc.git
* c-c++-common/dfp/pr33466.c: Adjust for user-defined literals.
From-SVN: r180627
This commit is contained in:
parent
f4d559c0f3
commit
9be087f649
|
@ -1,3 +1,7 @@
|
||||||
|
2011-10-28 Jason Merrill <jason@redhat.com>
|
||||||
|
|
||||||
|
* c-c++-common/dfp/pr33466.c: Adjust for user-defined literals.
|
||||||
|
|
||||||
2011-10-28 Paolo Carlini <paolo.carlini@oracle.com>
|
2011-10-28 Paolo Carlini <paolo.carlini@oracle.com>
|
||||||
|
|
||||||
PR c++/50864
|
PR c++/50864
|
||||||
|
|
|
@ -5,9 +5,9 @@
|
||||||
These are invalid for all targets, not just those that support
|
These are invalid for all targets, not just those that support
|
||||||
decimal float. */
|
decimal float. */
|
||||||
|
|
||||||
long double dF = 4.5dF; /* { dg-error "invalid suffix" } */
|
long double dF = 4.5dF; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
long double Df = 4.5Df; /* { dg-error "invalid suffix" } */
|
long double Df = 4.5Df; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
long double dD = 4.5dD; /* { dg-error "invalid suffix" } */
|
long double dD = 4.5dD; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
long double Dd = 4.5Dd; /* { dg-error "invalid suffix" } */
|
long double Dd = 4.5Dd; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
long double dL = 4.5dL; /* { dg-error "invalid suffix" } */
|
long double dL = 4.5dL; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
long double Dl = 4.5Dl; /* { dg-error "invalid suffix" } */
|
long double Dl = 4.5Dl; /* { dg-error "invalid suffix|user-defined" } */
|
||||||
|
|
Loading…
Reference in New Issue