mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
44e89340fe
GCC has used this for some time (since 7.0) and apparently we were getting away with using the hidden symbol, but when linking with --no-undefined-version we get an error unless it's properly exported. (For anyone who wonders at the assymetry, __udivmoddi4 is indeed much older and was introduced with GCC 3.0.) MFC after: 3 days Reviewed by: dim Differential Revision: https://reviews.freebsd.org/D44878
36 lines
286 B
Modula-2
36 lines
286 B
Modula-2
|
|
GCC_3.0 {
|
|
};
|
|
|
|
GCC_3.3 {
|
|
} GCC_3.0;
|
|
|
|
GCC_3.3.1 {
|
|
} GCC_3.3;
|
|
|
|
GCC_3.4 {
|
|
} GCC_3.3.1;
|
|
|
|
GCC_3.4.2 {
|
|
} GCC_3.4;
|
|
|
|
GCC_3.4.4 {
|
|
} GCC_3.4.2;
|
|
|
|
GCC_3.5 {
|
|
} GCC_3.4.4;
|
|
|
|
GCC_4.0.0 {
|
|
} GCC_3.5;
|
|
|
|
GCC_4.2.0 {
|
|
} GCC_4.0.0;
|
|
|
|
GCC_4.3.0 {
|
|
} GCC_4.2.0;
|
|
|
|
GCC_4.6.0 {
|
|
} GCC_4.3.0;
|
|
|
|
GCC_7.0.0 {
|
|
} GCC_4.6.0;
|