mirror of git://gcc.gnu.org/git/gcc.git
re PR bootstrap/36452 (Broken bootstrap while building libgomp.)
2008-06-06 Andreas Tobler <a.tobler@schweiz.org> PR bootstrap/36452 * loop_ull.c (GOMP_loop_ull_static_start): Adjust API. (GOMP_loop_ull_dynamic_start): Likewise. (GOMP_loop_ull_guided_start): Likewise. (GOMP_loop_ull_ordered_static_start): Likewise. (GOMP_loop_ull_ordered_dynamic_start): Likewise. (GOMP_loop_ull_ordered_guided_start): Likewise. From-SVN: r136503
This commit is contained in:
parent
e198f14cbd
commit
e919209b4e
|
|
@ -1,3 +1,13 @@
|
||||||
|
2008-06-06 Andreas Tobler <a.tobler@schweiz.org>
|
||||||
|
|
||||||
|
PR bootstrap/36452
|
||||||
|
* loop_ull.c (GOMP_loop_ull_static_start): Adjust API.
|
||||||
|
(GOMP_loop_ull_dynamic_start): Likewise.
|
||||||
|
(GOMP_loop_ull_guided_start): Likewise.
|
||||||
|
(GOMP_loop_ull_ordered_static_start): Likewise.
|
||||||
|
(GOMP_loop_ull_ordered_dynamic_start): Likewise.
|
||||||
|
(GOMP_loop_ull_ordered_guided_start): Likewise.
|
||||||
|
|
||||||
2008-06-06 Jakub Jelinek <jakub@redhat.com>
|
2008-06-06 Jakub Jelinek <jakub@redhat.com>
|
||||||
Richard Henderson <rth@redhat.com>
|
Richard Henderson <rth@redhat.com>
|
||||||
Ulrich Drepper <drepper@redhat.com>
|
Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
|
||||||
|
|
@ -483,47 +483,56 @@ extern __typeof(gomp_loop_ull_ordered_guided_next) GOMP_loop_ull_ordered_guided_
|
||||||
__attribute__((alias ("gomp_loop_ull_ordered_guided_next")));
|
__attribute__((alias ("gomp_loop_ull_ordered_guided_next")));
|
||||||
#else
|
#else
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_static_start (gomp_ull start, gomp_ull end, gomp_ull incr, gomp_ull chunk_size,
|
GOMP_loop_ull_static_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
gomp_ull *istart, gomp_ull *iend)
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_static_start (start, end, incr, chunk_size, istart, iend);
|
return gomp_loop_ull_static_start (up, start, end, incr, chunk_size, istart,
|
||||||
|
iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_dynamic_start (gomp_ull start, gomp_ull end, gomp_ull incr, gomp_ull chunk_size,
|
GOMP_loop_ull_dynamic_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
gomp_ull *istart, gomp_ull *iend)
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_dynamic_start (start, end, incr, chunk_size, istart, iend);
|
return gomp_loop_ull_dynamic_start (up, start, end, incr, chunk_size, istart,
|
||||||
|
iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_guided_start (gomp_ull start, gomp_ull end, gomp_ull incr, gomp_ull chunk_size,
|
GOMP_loop_ull_guided_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
gomp_ull *istart, gomp_ull *iend)
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_guided_start (start, end, incr, chunk_size, istart, iend);
|
return gomp_loop_ull_guided_start (up, start, end, incr, chunk_size, istart,
|
||||||
|
iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_ordered_static_start (gomp_ull start, gomp_ull end, gomp_ull incr,
|
GOMP_loop_ull_ordered_static_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
gomp_ull chunk_size, gomp_ull *istart, gomp_ull *iend)
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_ordered_static_start (start, end, incr, chunk_size,
|
return gomp_loop_ull_ordered_static_start (up, start, end, incr, chunk_size,
|
||||||
istart, iend);
|
istart, iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_ordered_dynamic_start (gomp_ull start, gomp_ull end, gomp_ull incr,
|
GOMP_loop_ull_ordered_dynamic_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
gomp_ull chunk_size, gomp_ull *istart, gomp_ull *iend)
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_ordered_dynamic_start (start, end, incr, chunk_size,
|
return gomp_loop_ull_ordered_dynamic_start (up, start, end, incr, chunk_size,
|
||||||
istart, iend);
|
istart, iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
GOMP_loop_ull_ordered_guided_start (gomp_ull start, gomp_ull end, gomp_ull incr,
|
GOMP_loop_ull_ordered_guided_start (bool up, gomp_ull start, gomp_ull end,
|
||||||
gomp_ull chunk_size, gomp_ull *istart, gomp_ull *iend)
|
gomp_ull incr, gomp_ull chunk_size,
|
||||||
|
gomp_ull *istart, gomp_ull *iend)
|
||||||
{
|
{
|
||||||
return gomp_loop_ull_ordered_guided_start (start, end, incr, chunk_size,
|
return gomp_loop_ull_ordered_guided_start (up, start, end, incr, chunk_size,
|
||||||
istart, iend);
|
istart, iend);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue