diff options
author | Alan Modra <amodra@gmail.com> | 2008-07-26 13:10:48 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2008-07-26 13:10:48 +0000 |
commit | 3c7b98977c0b44c19630cb2d6b699e90ba294e52 (patch) | |
tree | 9e45df98d39889a8008eea788918356e4889c7c7 /binutils | |
parent | d72314c67b7cc65ae935ad3dd80a6b1840b57d1a (diff) | |
download | gdb-3c7b98977c0b44c19630cb2d6b699e90ba294e52.zip gdb-3c7b98977c0b44c19630cb2d6b699e90ba294e52.tar.gz gdb-3c7b98977c0b44c19630cb2d6b699e90ba294e52.tar.bz2 |
Support PowerPC single-precision float.
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/readelf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c index 92b00f1..8b0e13a 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -9037,6 +9037,9 @@ display_power_gnu_attribute (unsigned char *p, int tag) case 2: printf ("Soft float\n"); break; + case 3: + printf ("Single-precision hard float\n"); + break; default: printf ("??? (%d)\n", val); break; |