aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2001-04-20 09:56:50 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2001-04-20 09:56:50 +0200
commit43e720723ff64cdbed12173248b783938173ab0a (patch)
tree4120801b04df0c391df22ca45c74588def05e73a /gcc/function.c
parent5c8378a7a2662941f64ef85e359ee0465c49c712 (diff)
downloadgcc-43e720723ff64cdbed12173248b783938173ab0a.zip
gcc-43e720723ff64cdbed12173248b783938173ab0a.tar.gz
gcc-43e720723ff64cdbed12173248b783938173ab0a.tar.bz2
gcse.c (gcse_main): Fix comment typo.
* gcse.c (gcse_main): Fix comment typo. (delete_null_pointer_check): Likewise. (hash_scan_set): Don't consider sets with REG_EQUIV MEM notes. * cse.c (cse_insn): Likewise. * function.c (fixup_var_refs_insns_with_hash): The sequence is toplevel. * gcc.c-torture/execute/20010403-1.c: New test. From-SVN: r41444
Diffstat (limited to 'gcc/function.c')
-rw-r--r--gcc/function.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c
index 565fcf0..8de57df 100644
--- a/gcc/function.c
+++ b/gcc/function.c
@@ -1682,7 +1682,7 @@ fixup_var_refs_insns_with_hash (ht, var, promoted_mode, unsignedp)
rtx insn = XEXP (insn_list, 0);
if (INSN_P (insn))
- fixup_var_refs_insn (insn, var, promoted_mode, unsignedp, 0);
+ fixup_var_refs_insn (insn, var, promoted_mode, unsignedp, 1);
insn_list = XEXP (insn_list, 1);
}