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
b3488a7a
Commit
b3488a7a
authored
Nov 14, 2000
by
Don Lindsay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test which exposed a gcse bug at one time.
From-SVN: r37463
parent
7f2f1a66
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
+40
-0
gcc/testsuite/gcc.c-torture/execute/20001101.c
+40
-0
No files found.
gcc/testsuite/gcc.c-torture/execute/20001101.c
0 → 100644
View file @
b3488a7a
extern
void
abort
(
void
);
typedef
struct
{
unsigned
int
unchanging
:
1
;
}
struc
,
*
rtx
;
rtx
dummy
(
int
*
a
,
rtx
*
b
)
{
*
a
=
1
;
*
b
=
(
rtx
)
7
;
return
(
rtx
)
1
;
}
void
bogus
(
insn
,
thread
,
delay_list
)
rtx
insn
;
rtx
thread
;
rtx
delay_list
;
{
rtx
new_thread
;
int
must_annul
;
delay_list
=
dummy
(
&
must_annul
,
&
new_thread
);
if
(
delay_list
==
0
&&
new_thread
)
{
thread
=
new_thread
;
}
if
(
delay_list
&&
must_annul
)
insn
->
unchanging
=
1
;
if
(
new_thread
!=
thread
)
abort
();
}
int
main
()
{
struc
baz
;
bogus
(
&
baz
,
(
rtx
)
7
,
0
);
exit
(
0
);
return
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