aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2002-08-14 10:44:54 +0000
committerNick Clifton <nickc@redhat.com>2002-08-14 10:44:54 +0000
commit85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17 (patch)
tree1c4e174eaae1a055497c62c3ab443678b4ddf785 /binutils
parent1fd03b5ab2e0b0d7deefff200384e02f5debe5fb (diff)
downloadfsf-binutils-gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.zip
fsf-binutils-gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.tar.gz
fsf-binutils-gdb-85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17.tar.bz2
Don't warn about ALT use with non-VIRTKEY.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog5
-rw-r--r--binutils/rcparse.y2
2 files changed, 6 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 5c75299..4ea6de3 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,8 @@
+2002-08-14 Luke Dunstan <infidel@users.sourceforge.net>
+
+ * rcparse.y (acc_entry): Don't warn about ALT use with
+ non-VIRTKEY.
+
2002-08-13 H.J. Lu <hjl@gnu.org>
* objcopy.c (copy_object): Don't warn about the unsupported
diff --git a/binutils/rcparse.y b/binutils/rcparse.y
index 898e99f..1f10da7 100644
--- a/binutils/rcparse.y
+++ b/binutils/rcparse.y
@@ -219,7 +219,7 @@ acc_entry:
$$.id = $2;
$$.flags |= $4;
if (($$.flags & ACC_VIRTKEY) == 0
- && ($$.flags & (ACC_SHIFT | ACC_CONTROL | ACC_ALT)) != 0)
+ && ($$.flags & (ACC_SHIFT | ACC_CONTROL)) != 0)
rcparse_warning (_("inappropriate modifiers for non-VIRTKEY"));
}
;