diff options
author | kientzle <kientzle@FreeBSD.org> | 2012-06-14 03:27:01 +0000 |
---|---|---|
committer | kientzle <kientzle@FreeBSD.org> | 2012-06-14 03:27:01 +0000 |
commit | 261e450cc4dc2265056f6ef9669212e5bfb06493 (patch) | |
tree | 240fd60bf5f258afd8f26235339179fb40354169 /lib | |
parent | a65b3dd5896112ac53c1e9c96fcd55cda29a0a99 (diff) | |
download | FreeBSD-src-261e450cc4dc2265056f6ef9669212e5bfb06493.zip FreeBSD-src-261e450cc4dc2265056f6ef9669212e5bfb06493.tar.gz |
__flt_rounds is a public symbol (expands from the FLT_ROUNDS macro),
so include it in the public namespace on arm just as with
other architectures.
This corrects r236816.
Submitted by: Jan Sieka
MFC after: 1 week
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/arm/Symbol.map | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/arm/Symbol.map b/lib/libc/arm/Symbol.map index e0116d7..61ad285 100644 --- a/lib/libc/arm/Symbol.map +++ b/lib/libc/arm/Symbol.map @@ -31,6 +31,7 @@ FBSD_1.0 { brk; cerror; /* XXX - Should this be .cerror (see sys/cerror.S)? */ sbrk; + __flt_rounds; }; FBSDprivate_1.0 { @@ -70,7 +71,6 @@ FBSDprivate_1.0 { __divdf3; __floatsisf; __floatsidf; - __flt_rounds; __fixsfsi; __fixdfsi; __fixunssfsi; |