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
14806ff1
Commit
14806ff1
authored
May 19, 2000
by
Michael Meissner
Committed by
Michael Meissner
May 19, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove CYGNUS LOCAL markers
From-SVN: r34009
parent
51becdd6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
17 deletions
+8
-17
gcc/testsuite/ChangeLog
+8
-0
gcc/testsuite/gcc.c-torture/compile/920501-1.c
+0
-2
gcc/testsuite/gcc.c-torture/execute/920415-1.c
+0
-2
gcc/testsuite/gcc.c-torture/execute/920501-7.c
+0
-2
gcc/testsuite/gcc.c-torture/execute/conversion.c
+0
-9
gcc/testsuite/gcc.c-torture/execute/cvt-1.c
+0
-2
No files found.
gcc/testsuite/ChangeLog
View file @
14806ff1
2000-05-18 Michael Meissner <meissner@redhat.com>
* gcc.c-torture/compile/920501-1.c: Remove CYGNUS LOCAL markers.
* gcc.c-torture/execute/920415-1.c: Ditto.
* gcc.c-torture/execute/920501-1.c: Ditto.
* gcc.c-torture/execute/conversion.c: Ditto.
* gcc.c-torture/execute/cvt-1.c: Ditto.
Thu May 18 16:03:29 2000 Jeffrey A Law (law@cygnus.com)
* gcc.c-torture/compile/20000518-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/compile/920501-1.c
View file @
14806ff1
/* CYGNUS LOCAL -- meissner/no label values */
#ifndef NO_LABEL_VALUES
a
(){
int
**
b
[]
=
{
&&
c
};
c
:
;}
#else
int
x
;
#endif
/* END CYGNUS LOCAL -- meissner/no label values */
gcc/testsuite/gcc.c-torture/execute/920415-1.c
View file @
14806ff1
/* CYGNUS LOCAL -- meissner/no label values */
#ifndef NO_LABEL_VALUES
main
(){
__label__
l
;
void
*
x
(){
return
&&
l
;}
goto
*
x
();
abort
();
return
;
l
:
exit
(
0
);}
#else
main
(){
exit
(
0
);
}
#endif
/* END CYGNUS LOCAL -- meissner/no label values */
gcc/testsuite/gcc.c-torture/execute/920501-7.c
View file @
14806ff1
/* CYGNUS LOCAL -- meissner/no label values */
#ifdef STACK_SIZE
#define DEPTH ((STACK_SIZE) / 512 + 1)
#else
...
...
@@ -29,4 +28,3 @@ main ()
#endif
exit
(
0
);
}
/* END CYGNUS LOCAL -- meissner/no label values */
gcc/testsuite/gcc.c-torture/execute/conversion.c
View file @
14806ff1
...
...
@@ -207,11 +207,9 @@ test_float_to_integer()
if
(
f2u
((
float
)
~
((
~
0U
)
>>
1
))
!=
~
((
~
0U
)
>>
1
))
/* 0x80000000 */
abort
();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
/* These tests require double precision, so for hosts that don't offer
that much precision, just ignore these test. */
if
(
sizeof
(
double
)
>=
8
)
{
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if
(
d2u
(
0
.
0
)
!=
0
)
abort
();
if
(
d2u
(
0
.
999
)
!=
0
)
...
...
@@ -226,10 +224,7 @@ test_float_to_integer()
abort
();
if
(
d2u
((
double
)
~
((
~
0U
)
>>
1
))
!=
~
((
~
0U
)
>>
1
))
/* 0x80000000 */
abort
();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
}
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if
(
f2s
(
0
.
0
)
!=
0
)
abort
();
...
...
@@ -248,11 +243,9 @@ test_float_to_integer()
if
(
f2s
((
float
)(
int
)
~
((
~
0U
)
>>
1
))
!=
(
int
)
~
((
~
0U
)
>>
1
))
/* 0x80000000 */
abort
();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
/* These tests require double precision, so for hosts that don't offer
that much precision, just ignore these test. */
if
(
sizeof
(
double
)
>=
8
)
{
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
if
(
d2s
(
0
.
0
)
!=
0
)
abort
();
if
(
d2s
(
0
.
999
)
!=
0
)
...
...
@@ -271,9 +264,7 @@ test_float_to_integer()
abort
();
if
(
d2s
((
double
)(
int
)
~
((
~
0U
)
>>
1
))
!=
(
int
)
~
((
~
0U
)
>>
1
))
/* 0x80000000 */
abort
();
/* CYGNUS LOCAL -- amylaar/32bit doubles */
}
/* END CYGNUS LOCAL -- amylaar/32bit doubles */
}
#if __GNUC__
...
...
gcc/testsuite/gcc.c-torture/execute/cvt-1.c
View file @
14806ff1
/* CYGNUS LOCAL -- meissner/16 bit ints */
static
inline
long
g1
(
double
x
)
{
...
...
@@ -27,4 +26,3 @@ main ()
abort
();
exit
(
0
);
}
/* END CYGNUS LOCAL -- meissner/16 bit ints */
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