* c-c++-common/dfp/pr33466.c: Adjust for user-defined literals.
From-SVN: r180627
This commit is contained in:
parent
f4d559c0f3
commit
9be087f649
2 changed files with 10 additions and 6 deletions
|
@ -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>
|
||||
|
||||
PR c++/50864
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
These are invalid for all targets, not just those that support
|
||||
decimal float. */
|
||||
|
||||
long double dF = 4.5dF; /* { dg-error "invalid suffix" } */
|
||||
long double Df = 4.5Df; /* { dg-error "invalid suffix" } */
|
||||
long double dD = 4.5dD; /* { dg-error "invalid suffix" } */
|
||||
long double Dd = 4.5Dd; /* { dg-error "invalid suffix" } */
|
||||
long double dL = 4.5dL; /* { dg-error "invalid suffix" } */
|
||||
long double Dl = 4.5Dl; /* { dg-error "invalid suffix" } */
|
||||
long double dF = 4.5dF; /* { dg-error "invalid suffix|user-defined" } */
|
||||
long double Df = 4.5Df; /* { dg-error "invalid suffix|user-defined" } */
|
||||
long double dD = 4.5dD; /* { dg-error "invalid suffix|user-defined" } */
|
||||
long double Dd = 4.5Dd; /* { dg-error "invalid suffix|user-defined" } */
|
||||
long double dL = 4.5dL; /* { dg-error "invalid suffix|user-defined" } */
|
||||
long double Dl = 4.5Dl; /* { dg-error "invalid suffix|user-defined" } */
|
||||
|
|
Loading…
Add table
Reference in a new issue