fold-const.c (operand_equal_p): Use memcmp to compare string constants.

* fold-const.c (operand_equal_p): Use memcmp to compare string
	constants.

From-SVN: r31097
This commit is contained in:
Martin v. Löwis 1999-12-27 11:35:07 +00:00 committed by Martin v. Löwis
parent c547c37183
commit 7114581090
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
1999-12-23 Martin v. Löwis <loewis@informatik.hu-berlin.de>
* fold-const.c (operand_equal_p): Use memcmp to compare string
constants.
Suggested by D. J. Bernstein
1999-12-17 Jakub Jelinek <jakub@redhat.com>
* config/h8300/h8300.h (TARGET_H8300H, TARGET_H8300S): Make sure

View File

@ -2250,7 +2250,7 @@ operand_equal_p (arg0, arg1, only_const)
case STRING_CST:
return (TREE_STRING_LENGTH (arg0) == TREE_STRING_LENGTH (arg1)
&& ! strncmp (TREE_STRING_POINTER (arg0),
&& ! memcmp (TREE_STRING_POINTER (arg0),
TREE_STRING_POINTER (arg1),
TREE_STRING_LENGTH (arg0)));