This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug exp/14857] New: quadruple precision variables do not display


http://sourceware.org/bugzilla/show_bug.cgi?id=14857

             Bug #: 14857
           Summary: quadruple precision variables do not display
           Product: gdb
           Version: 7.4
            Status: NEW
          Severity: normal
          Priority: P2
         Component: exp
        AssignedTo: unassigned@sourceware.org
        ReportedBy: msustik@gmail.com
    Classification: Unclassified


Quadruple precision numbers (see libquadmath) like __float128 are not displayed
properly by gdb.

#include "quadmath.h"

int main ()
{
    __float128 x = 4.0q;
    return 0;
}

Breakpoint 1, main () at a.c:6
6           return 0;
(gdb) p x
$1 = 0

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]