OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [g++.dg/] [ext/] [utf16-3.C] - Blame information for rev 301

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 301 jeremybenn
/* Contributed by Kris Van Hees  */
2
/* Test concatenation of char16_t* string literals. */
3
/* { dg-do run } */
4
/* { dg-options "-std=c++0x -Wall -Werror" } */
5
 
6
extern "C" void abort (void);
7
 
8
const static char16_t   *s0 = u"a" u"b";
9
 
10
const static char16_t   *s1 = u"a" "b";
11
const static char16_t   *s2 = "a" u"b";
12
const static char16_t   *s3 = u"a" "\u2029";
13
const static char16_t   *s4 = "\u2029" u"b";
14
const static char16_t   *s5 = u"a" "\U00064321";
15
const static char16_t   *s6 = "\U00064321" u"b";
16
 
17
#define A       0x0061
18
#define B       0x0062
19
#define X       0x2029
20
#define Y1      0xD950
21
#define Y2      0xDF21
22
 
23
int main ()
24
{
25
    if (sizeof ((u"a" u"b")[0]) != sizeof (char16_t))
26
        abort ();
27
    if (sizeof ((u"a"  "b")[0]) != sizeof (char16_t))
28
        abort ();
29
    if (sizeof (( "a" u"b")[0]) != sizeof (char16_t))
30
        abort ();
31
 
32
    if (s0[0] != A || s0[1] != B || s0[2] != 0x0000)
33
        abort ();
34
 
35
    if (s1[0] != A || s1[1] != B || s1[2] != 0x0000)
36
        abort ();
37
    if (s2[0] != A || s2[1] != B || s2[2] != 0x0000)
38
        abort ();
39
    if (s3[0] != A || s3[1] != X || s3[2] != 0x0000)
40
        abort ();
41
    if (s4[0] != X || s4[1] != B || s4[2] != 0x0000)
42
        abort ();
43
    if (s5[0] != A || s5[1] != Y1 || s5[2] != Y2 || s5[3] != 0x0000)
44
        abort ();
45
    if (s6[0] != Y1 || s6[1] != Y2 || s6[2] != B || s6[3] != 0x0000)
46
        abort ();
47
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.