diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-05-04 19:18:02 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-05-04 19:18:02 +0000 |
commit | 35262a230c8965864f39e160f901bece95f853c2 (patch) | |
tree | e6a76d8c00bef27239b59ec2582e56a839a20ae4 /gas | |
parent | 89e71f5c88863981d62836a94e59161767ba55ff (diff) | |
download | gdb-35262a230c8965864f39e160f901bece95f853c2.zip gdb-35262a230c8965864f39e160f901bece95f853c2.tar.gz gdb-35262a230c8965864f39e160f901bece95f853c2.tar.bz2 |
Add `instruction' to unsupported error message
* config/tc-i386.c (match_template): Add `instruction' to
unsupported error message.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-i386.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 580e830..8ea8296 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ 2012-05-04 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (match_template): Add `instruction' to + unsupported error message. + +2012-05-04 H.J. Lu <hongjiu.lu@intel.com> + * config/tc-i386.c (output_insn): Reformat. 2012-05-04 H.J. Lu <hongjiu.lu@intel.com> diff --git a/gas/config/tc-i386.c b/gas/config/tc-i386.c index c0c1bed..ccf54bc 100644 --- a/gas/config/tc-i386.c +++ b/gas/config/tc-i386.c @@ -4353,7 +4353,7 @@ check_reverse: err_msg = _("unsupported syntax"); break; case unsupported: - as_bad (_("unsupported `%s'"), + as_bad (_("unsupported instruction `%s'"), current_templates->start->name); return NULL; case invalid_vsib_address: |