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
b6d90461
Commit
b6d90461
authored
Dec 30, 2003
by
Mark Mitchell
Committed by
Mark Mitchell
Dec 30, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* g++.dg/abi/vbase10.C: XFAIL on arm*-*-*.
From-SVN: r75241
parent
22dc9b06
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.dg/abi/vbase10.C
+7
-1
No files found.
gcc/testsuite/ChangeLog
View file @
b6d90461
2003-12-30 Mark Mitchell <mark@codesourcery.com>
* g++.dg/abi/vbase10.C: XFAIL on arm*-*-*.
2003-12-30 Kazu Hirata <kazu@cs.umass.edu>
* g++.old-deja/g++.jason/thunk2.C: Remove traces of dead
...
...
gcc/testsuite/g++.dg/abi/vbase10.C
View file @
b6d90461
...
...
@@ -3,5 +3,11 @@
struct
A
{
virtual
void
f
();
char
c1
;
};
struct
B
{
B
();
char
c2
;
};
struct
C
:
public
A
,
public
virtual
B
{};
// { dg-warning "ABI" }
// On ARM processors, the alignment of B will be 4 even though it
// contains only a single "char". That avoids the situation that the
// warning below is designed to catch. On ARM NetBSD, the alignment
// of B will be only 1 -- but there is no way to tell DejaGNU that a
// failure is expected on all ARM targets except arm*-*-netbsd*.
// Therefore, this test will XPASS on arm*-*-netbsd*.
struct
C
:
public
A
,
public
virtual
B
{};
// { dg-warning "ABI" "" { xfail arm*-*-* } }
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