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
f641e05b
Commit
f641e05b
authored
Feb 23, 2003
by
Alan Modra
Committed by
Alan Modra
Feb 24, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test.
From-SVN: r63339
parent
8403445a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/g++.dg/abi/param1.C
+28
-0
No files found.
gcc/testsuite/ChangeLog
View file @
f641e05b
2003-02-24 Alan Modra <amodra@bigpond.net.au>
* g++.dg/abi/param1.C: New test.
2003-02-23 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
2003-02-23 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
PR c++/7982
PR c++/7982
...
...
gcc/testsuite/g++.dg/abi/param1.C
0 → 100644
View file @
f641e05b
// { dg-do run }
//
// Failed on powerpc64-linux for structure sizes > 64 and with size not a
// multiple of 8 after padding.
struct
object
{
int
i1
;
char
s1
[
60
];
int
i2
;
char
s2
[
64
];
};
extern
int
subr
(
struct
object
obj
);
int
main
()
{
struct
object
obj
;
obj
.
i1
=
1234
;
obj
.
i2
=
5678
;
return
subr
(
obj
);
}
int
subr
(
struct
object
obj
)
{
return
obj
.
i1
!=
1234
||
obj
.
i2
!=
5678
;
}
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