mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +00:00
Fix bug in firstversions.awk version range handling.
This commit is contained in:
parent
73139a7628
commit
e034841eac
@ -1,3 +1,7 @@
|
|||||||
|
2012-01-28 Chris Metcalf <cmetcalf@tilera.com>
|
||||||
|
|
||||||
|
* scripts/firstversions.awk: Fix bug in version range handling.
|
||||||
|
|
||||||
2012-01-28 Ulrich Drepper <drepper@gmail.com>
|
2012-01-28 Ulrich Drepper <drepper@gmail.com>
|
||||||
|
|
||||||
* sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
|
* sysdeps/x86_64/fpu/math_private.h: Simplify use of AVX instructions.
|
||||||
|
@ -54,9 +54,13 @@ $1 == "}" {
|
|||||||
while (vers_compare($1, v) >= 0) {
|
while (vers_compare($1, v) >= 0) {
|
||||||
delete firstversion[thislib, idx[thislib]];
|
delete firstversion[thislib, idx[thislib]];
|
||||||
idx[thislib]++;
|
idx[thislib]++;
|
||||||
if ((thislib, idx[thislib]) in firstversion)
|
if ((thislib, idx[thislib]) in firstversion) {
|
||||||
|
# If we're skipping a referenced version to jump ahead to a
|
||||||
|
# later version, synthesize the earlier referenced version now.
|
||||||
|
if (v != $1 && (thislib, v) in usedversion)
|
||||||
|
print " " v;
|
||||||
v = firstversion[thislib, idx[thislib]];
|
v = firstversion[thislib, idx[thislib]];
|
||||||
else
|
} else
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if ($1 == v || $1 == f)
|
if ($1 == v || $1 == f)
|
||||||
|
Loading…
Reference in New Issue
Block a user