diff options
Diffstat (limited to 'binutils')
-rw-r--r-- | binutils/ChangeLog | 4 | ||||
-rw-r--r-- | binutils/readelf.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 922317f..66f2ec1 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,7 @@ +2014-05-16 Kaushik Phata <Kaushik.Phatak@kpit.com> + + * readelf.c (get_machine_flags): Handle RL78 64-bit doubles flag. + 2014-05-02 Alan Modra <amodra@gmail.com> * emul_aix.c: Update bfd target vector naming. diff --git a/binutils/readelf.c b/binutils/readelf.c index 9cafd7c..af6463e 100644 --- a/binutils/readelf.c +++ b/binutils/readelf.c @@ -3009,6 +3009,8 @@ get_machine_flags (unsigned e_flags, unsigned e_machine) case EM_RL78: if (e_flags & E_FLAG_RL78_G10) strcat (buf, ", G10"); + if (e_flags & E_FLAG_RL78_64BIT_DOUBLES) + strcat (buf, ", 64-bit doubles"); break; case EM_RX: |