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
842b619d
Commit
842b619d
authored
Sep 01, 2015
by
Kenneth Zadeck
Committed by
Kenneth Zadeck
Sep 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed misplaced testcase
From-SVN: r227390
parent
b2c72901
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/testsuite/ChangeLog
+3
-0
gcc/testsuite/gcc.c-torture/execute/ieee/20000320-1.c
+2
-1
No files found.
gcc/testsuite/ChangeLog
View file @
842b619d
2015-09-01 Kenneth Zadeck <zadeck@naturalbridge.com>
* gcc.c-torture/execute/ieee/20000320-1.c Fixed misplaced test case.
2015-09-01 Matthew Fortune <matthew.fortune@imgtec.com>
Andrew Bennett <andrew.bennett@imgtec.com>
...
...
gcc/testsuite/gcc.c-torture/execute/ieee/20000320-1.c
View file @
842b619d
...
...
@@ -35,10 +35,10 @@ int main()
||
sizeof
(
double
)
!=
sizeof
(
ull
))
exit
(
0
);
c
(
0x3690000000000000ULL
,
0x00000000U
);
#if (defined __arm__ || defined __thumb__) && ! (defined __ARMEB__ || defined __VFP_FP__)
/* The ARM always stores FP numbers in big-wordian format,
even when running in little-byteian mode. */
c
(
0x0000000036900000ULL
,
0x00000000U
);
c
(
0x0000000136900000ULL
,
0x00000001U
);
c
(
0xffffffff369fffffULL
,
0x00000001U
);
c
(
0x0000000036A00000ULL
,
0x00000001U
);
...
...
@@ -61,6 +61,7 @@ int main()
c
(
0x5000000038100000ULL
,
0x00800002U
);
c
(
0x5000000138100000ULL
,
0x00800003U
);
#else
c
(
0x3690000000000000ULL
,
0x00000000U
);
c
(
0x3690000000000001ULL
,
0x00000001U
);
c
(
0x369fffffffffffffULL
,
0x00000001U
);
c
(
0x36A0000000000000ULL
,
0x00000001U
);
...
...
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