From: Nick Clifton Date: Wed, 14 Aug 2002 10:44:54 +0000 (+0000) Subject: Don't warn about ALT use with non-VIRTKEY. X-Git-Tag: drow-cplus-branchpoint~794 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=85c09e8a4ae4a7a18e891b5cc1ebdc0111e39e17;p=thirdparty%2Fbinutils-gdb.git Don't warn about ALT use with non-VIRTKEY. --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 5c752994b1a..4ea6de32936 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,3 +1,8 @@ +2002-08-14 Luke Dunstan + + * rcparse.y (acc_entry): Don't warn about ALT use with + non-VIRTKEY. + 2002-08-13 H.J. Lu * objcopy.c (copy_object): Don't warn about the unsupported diff --git a/binutils/rcparse.y b/binutils/rcparse.y index 898e99fdfd1..1f10da7eaf3 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")); } ;