Fix gcc.dg/utf16-4.c
authorThomas Preud'homme <thomas.preudhomme@arm.com>
Tue, 6 Jun 2017 09:55:17 +0000 (09:55 +0000)
committerThomas Preud'homme <thopre01@gcc.gnu.org>
Tue, 6 Jun 2017 09:55:17 +0000 (09:55 +0000)
2017-06-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>

    gcc/testsuite/
    * gcc.dg/utf16-4.c: Accept "long unsigned int" as well as
    "unsigned int" in conversation warning on line 15.

From-SVN: r248914

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.dg/utf16-4.c

index 35d36c49798b256827c58e1c1e894144b9e23283..8aed9bc4ff2da0a2cbd33b5fceae97fb0a0251a2 100644 (file)
@@ -1,3 +1,8 @@
+2017-06-06  Thomas Preud'homme  <thomas.preudhomme@arm.com>
+
+       * gcc.dg/utf16-4.c: Accept "long unsigned int" as well as
+       "unsigned int" in conversation warning on line 15.
+
 2017-06-06  Richard Biener  <rguenther@suse.de>
 
        PR tree-optimization/80928
index f9ebd61845a15fc657a2f906d3f684768993df44..e2f115ebc813ba380718254db699db8ef96e532b 100644 (file)
@@ -12,7 +12,7 @@ char16_t      c2 = u'\U00064321';     /* { dg-warning "constant too long" } */
 char16_t       c3 = 'a';
 char16_t       c4 = U'a';
 char16_t       c5 = U'\u2029';
-char16_t       c6 = U'\U00064321';     /* { dg-warning "conversion from .unsigned int. to .char16_t {aka short unsigned int}. changes value from .410401. to .17185." } */
+char16_t       c6 = U'\U00064321';     /* { dg-warning "conversion from .(long )?unsigned int. to .char16_t {aka short unsigned int}. changes value from .410401. to .17185." } */
 char16_t       c7 = L'a';
 char16_t       c8 = L'\u2029';
 char16_t       c9 = L'\U00064321';     /* { dg-warning "conversion" "" { target { 4byte_wchar_t } } } */