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
50f9ca2f
Commit
50f9ca2f
authored
Dec 29, 2000
by
Richard Henderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test.
From-SVN: r38533
parent
c17f08e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
gcc/testsuite/gcc.c-torture/execute/20001229-1.c
+48
-0
No files found.
gcc/testsuite/gcc.c-torture/execute/20001229-1.c
0 → 100644
View file @
50f9ca2f
/* This testcase originally provoked an unaligned access fault on Alpha.
Since Digital Unix and Linux (and probably others) by default fix
these up in the kernel, the failure was not visible unless one
is sitting at the console examining logs.
So: If we know how, ask the kernel to deliver SIGBUS instead so
that the test case visibly fails. */
#if defined(__alpha__) && (defined(__linux__) || defined(__osf__))
#ifdef __linux__
#include <asm/sysinfo.h>
#include <asm/unistd.h>
static
inline
int
setsysinfo
(
unsigned
long
op
,
void
*
buffer
,
unsigned
long
size
,
int
*
start
,
void
*
arg
,
unsigned
long
flag
)
{
syscall
(
__NR_osf_setsysinfo
,
op
,
buffer
,
size
,
start
,
arg
,
flag
);
}
#else
#include <sys/sysinfo.h>
#endif
static
void
__attribute__
((
constructor
))
trap_unaligned
(
void
)
{
unsigned
int
buf
[
2
];
buf
[
0
]
=
SSIN_UACPROC
;
buf
[
1
]
=
UAC_SIGBUS
|
UAC_NOPRINT
;
setsysinfo
(
SSI_NVPAIRS
,
buf
,
1
,
0
,
0
,
0
);
}
#endif
/* alpha */
void
foo
(
char
*
a
,
char
*
b
)
{
}
void
showinfo
()
{
char
uname
[
33
]
=
""
,
tty
[
38
]
=
"/dev/"
;
foo
(
uname
,
tty
);
}
int
main
()
{
showinfo
();
exit
(
0
);
}
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