Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
fbc2a505
Commit
fbc2a505
authored
Sep 24, 2008
by
Steve Ellcey
Committed by
Steve Ellcey
Sep 24, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/utf-array.c: Fix syntax of dg-error stmts.
From-SVN: r140635
parent
2a013f05
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/utf-array.c
+4
-4
No files found.
gcc/testsuite/ChangeLog
View file @
fbc2a505
2008-09-24 Steve Ellcey <sje@cup.hp.com>
* gcc.dg/utf-array.c: Fix syntax of dg-error stmts.
2008-09-24 Tobias Burnus <burnus@net-b.de>
PR fortran/37626
...
...
gcc/testsuite/gcc.dg/utf-array.c
View file @
fbc2a505
...
...
@@ -16,7 +16,7 @@ const char s_3[] = L"ab"; /* { dg-error "from wide string" } */
const
char16_t
s16_0
[]
=
"ab"
;
/* { dg-error "from non-wide" } */
const
char16_t
s16_1
[]
=
u"ab"
;
const
char16_t
s16_2
[]
=
U"ab"
;
/* { dg-error "from incompatible" } */
const
char16_t
s16_3
[]
=
L"ab"
;
/* { dg-error "from incompatible"
{ target !wchar_t_char16_t_compatible
} } */
const
char16_t
s16_3
[]
=
L"ab"
;
/* { dg-error "from incompatible"
"" { target { ! wchar_t_char16_t_compatible }
} } */
const
char16_t
s16_4
[
0
]
=
u"ab"
;
/* { dg-warning "chars is too long" } */
const
char16_t
s16_5
[
1
]
=
u"ab"
;
/* { dg-warning "chars is too long" } */
...
...
@@ -27,7 +27,7 @@ const char16_t s16_8[4] = u"ab";
const
char32_t
s32_0
[]
=
"ab"
;
/* { dg-error "from non-wide" } */
const
char32_t
s32_1
[]
=
u"ab"
;
/* { dg-error "from incompatible" } */
const
char32_t
s32_2
[]
=
U"ab"
;
const
char32_t
s32_3
[]
=
L"ab"
;
/* { dg-error "from incompatible"
{ target !wchar_t_char32_t_compatible
} } */
const
char32_t
s32_3
[]
=
L"ab"
;
/* { dg-error "from incompatible"
"" { target { ! wchar_t_char32_t_compatible }
} } */
const
char32_t
s32_4
[
0
]
=
U"ab"
;
/* { dg-warning "chars is too long" } */
const
char32_t
s32_5
[
1
]
=
U"ab"
;
/* { dg-warning "chars is too long" } */
...
...
@@ -36,6 +36,6 @@ const char32_t s32_7[3] = U"ab";
const
char32_t
s32_8
[
4
]
=
U"ab"
;
const
wchar_t
sw_0
[]
=
"ab"
;
/* { dg-error "from non-wide" } */
const
wchar_t
sw_1
[]
=
u"ab"
;
/* { dg-error "from incompatible"
{ target !wchar_t_char16_t_compatible
} } */
const
wchar_t
sw_2
[]
=
U"ab"
;
/* { dg-error "from incompatible"
{ target !wchar_t_char32_t_compatible
} } */
const
wchar_t
sw_1
[]
=
u"ab"
;
/* { dg-error "from incompatible"
"" { target { ! wchar_t_char16_t_compatible }
} } */
const
wchar_t
sw_2
[]
=
U"ab"
;
/* { dg-error "from incompatible"
"" { target { ! wchar_t_char32_t_compatible }
} } */
const
wchar_t
sw_3
[]
=
L"ab"
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment