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
ee3a52d7
Commit
ee3a52d7
authored
Nov 25, 2009
by
Sebastian Pop
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* testsuite/gcc.dg/graphite/id-15.c: Adjusted.
From-SVN: r154579
parent
7e0667ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
gcc/testsuite/gcc.dg/graphite/id-15.c
+8
-8
No files found.
gcc/testsuite/gcc.dg/graphite/id-15.c
View file @
ee3a52d7
...
...
@@ -9,10 +9,10 @@ encode (words, low, hi)
unsigned
long
low
;
long
hi
;
{
words
[
0
]
=
((
low
)
&
(((
unsigned
long
)
1
<<
(
(
8
*
8
)
/
2
))
-
1
));
words
[
1
]
=
((
unsigned
long
)
(
low
)
>>
(
8
*
8
)
/
2
);
words
[
2
]
=
((
hi
)
&
(((
unsigned
long
)
1
<<
(
(
8
*
8
)
/
2
))
-
1
));
words
[
3
]
=
((
unsigned
long
)
(
hi
)
>>
(
8
*
8
)
/
2
);
words
[
0
]
=
((
low
)
&
(((
unsigned
long
)
1
<<
(
sizeof
(
unsigned
long
)
/
2
))
-
1
));
words
[
1
]
=
((
unsigned
long
)
(
low
)
>>
sizeof
(
unsigned
long
)
/
2
);
words
[
2
]
=
((
hi
)
&
(((
unsigned
long
)
1
<<
(
sizeof
(
unsigned
long
)
/
2
))
-
1
));
words
[
3
]
=
((
unsigned
long
)
(
hi
)
>>
sizeof
(
unsigned
long
)
/
2
);
}
static
void
...
...
@@ -21,8 +21,8 @@ decode (words, low, hi)
unsigned
long
*
low
;
long
*
hi
;
{
*
low
=
words
[
0
]
+
words
[
1
]
*
((
unsigned
long
)
1
<<
(
8
*
8
)
/
2
);
*
hi
=
words
[
2
]
+
words
[
3
]
*
((
unsigned
long
)
1
<<
(
8
*
8
)
/
2
);
*
low
=
words
[
0
]
+
words
[
1
]
*
((
unsigned
long
)
1
<<
sizeof
(
unsigned
long
)
/
2
);
*
hi
=
words
[
2
]
+
words
[
3
]
*
((
unsigned
long
)
1
<<
sizeof
(
unsigned
long
)
/
2
);
}
int
...
...
@@ -94,8 +94,8 @@ mul_double (l1, h1, l2, h2, lv, hv)
carry
+=
arg1
[
i
]
*
arg2
[
j
];
carry
+=
prod
[
k
];
prod
[
k
]
=
((
carry
)
&
(((
unsigned
long
)
1
<<
(
(
8
*
8
)
/
2
))
-
1
));
carry
=
((
unsigned
long
)
(
carry
)
>>
(
8
*
8
)
/
2
);
prod
[
k
]
=
((
carry
)
&
(((
unsigned
long
)
1
<<
(
sizeof
(
unsigned
long
)
/
2
))
-
1
));
carry
=
((
unsigned
long
)
(
carry
)
>>
sizeof
(
unsigned
long
)
/
2
);
}
prod
[
i
+
4
]
=
carry
;
}
...
...
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