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
c2b2e000
Commit
c2b2e000
authored
Mar 14, 1999
by
Zack Weinberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test, for spurious "variable may be clobbered by `longjmp' or `vfork'"
warnings. From-SVN: r25765
parent
407f03b8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
gcc/testsuite/gcc.dg/setjmp-1.c
+36
-0
No files found.
gcc/testsuite/gcc.dg/setjmp-1.c
0 → 100644
View file @
c2b2e000
/* Test for bogus "variable `x' may be clobbered by longjmp" warnings.
Inspired by cse.c:simplify_relational_operation. */
/* { dg-do compile } */
/* { dg-options "-O -W -Wall" } */
#include <setjmp.h>
extern
void
set_float_handler
(
jmp_buf
*
);
#define EQ 0x01
#define LT 0x02
#define GT 0x04
int
compare_float
(
double
a
,
double
b
)
/* { dg-bogus "clobbered" "spurious clobbered warning" { xfail *-*-* } } */
{
jmp_buf
handler
;
int
result
;
a
+=
1
.
0
;
if
(
setjmp
(
handler
))
{
set_float_handler
(
0
);
return
0
;
}
set_float_handler
(
&
handler
);
if
(
a
==
b
)
result
=
EQ
;
else
if
(
a
>
b
)
result
=
LT
;
else
if
(
a
<
b
)
result
=
GT
;
else
result
=
0
;
set_float_handler
(
0
);
return
result
;
}
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