From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18018 invoked by alias); 22 Dec 2014 20:55:29 -0000 Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org Received: (qmail 17489 invoked by uid 48); 22 Dec 2014 20:55:24 -0000 From: "cmetcalf at ezchip dot com" To: glibc-bugs@sourceware.org Subject: [Bug math/17748] New: fe* function calls yield link namespace conform failures on dbl-64 hosts Date: Mon, 22 Dec 2014 20:55:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: math X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: cmetcalf at ezchip dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-12/txt/msg00187.txt.bz2 https://sourceware.org/bugzilla/show_bug.cgi?id=17748 Bug ID: 17748 Summary: fe* function calls yield link namespace conform failures on dbl-64 hosts Product: glibc Version: unspecified Status: NEW Severity: normal Priority: P2 Component: math Assignee: unassigned at sourceware dot org Reporter: cmetcalf at ezchip dot com Looking at the conform/*/math.h/linknamespace results, it seems to be that SET_RESTORE_ROUND_53BIT in sysdeps/ieee754/dbl-64/s_sin.c (for example) calls through to feupdateenv() and other similar routines: [initial] __sqrt -> [libm.a(w_sqrt.o)] __ieee754_sqrt -> [libm.a(e_sqrt.o)] fegetround [initial] __sqrt -> [libm.a(w_sqrt.o)] __ieee754_sqrt -> [libm.a(e_sqrt.o)] fesetenv [initial] __cos -> [libm.a(s_sin.o)] feupdateenv [initial] __remainder -> [libm.a(w_remainder.o)] __ieee754_remainder -> [libm.a(e_remainder.o)] fegetenv [initial] __asinh -> [libm.a(s_asinh.o)] __ieee754_sqrt -> [libm.a(e_sqrt.o)] fegetround [initial] __remainder -> [libm.a(w_remainder.o)] __ieee754_remainder -> [libm.a(e_remainder.o)] fesetenv We should convert to using the __fe* names instead of the fe* names. Machines with inline libc_fe* definitions would not normally see these issues. -- You are receiving this mail because: You are on the CC list for the bug.