diff options
author | Tom Tromey <tromey@redhat.com> | 2006-05-02 15:54:00 +0000 |
---|---|---|
committer | Tom Tromey <tromey@gcc.gnu.org> | 2006-05-02 15:54:00 +0000 |
commit | 263bb8fb8603df086463cca38be38bdaedee08d2 (patch) | |
tree | b8cdced4dff0d139eebf8d7ec51ad3eb8a20f295 | |
parent | 3abde0f150c4c0e74fba39eb6f7a269ca28ef7b7 (diff) | |
download | gcc-263bb8fb8603df086463cca38be38bdaedee08d2.zip gcc-263bb8fb8603df086463cca38be38bdaedee08d2.tar.gz gcc-263bb8fb8603df086463cca38be38bdaedee08d2.tar.bz2 |
* tree-flow-inline.h (op_iter_init_phiuse): Fixed typo.
From-SVN: r113472
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-flow-inline.h | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f1f4e9f..378be12 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2006-05-02 Tom Tromey <tromey@redhat.com> + + * tree-flow-inline.h (op_iter_init_phiuse): Fixed typo. + 2006-05-02 Kazu Hirata <kazu@codesourcery.com> PR target/27387 diff --git a/gcc/tree-flow-inline.h b/gcc/tree-flow-inline.h index 58684bd..98cb512 100644 --- a/gcc/tree-flow-inline.h +++ b/gcc/tree-flow-inline.h @@ -1,5 +1,5 @@ /* Inline functions for tree-flow.h - Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. + Copyright (C) 2001, 2003, 2005, 2006 Free Software Foundation, Inc. Contributed by Diego Novillo <dnovillo@redhat.com> This file is part of GCC. @@ -1242,7 +1242,7 @@ single_phi_def (tree stmt, int flags) } /* Initialize the iterator PTR for uses matching FLAGS in PHI. FLAGS should - be either SSA_OP_USES or SAS_OP_VIRTUAL_USES. */ + be either SSA_OP_USES or SSA_OP_VIRTUAL_USES. */ static inline use_operand_p op_iter_init_phiuse (ssa_op_iter *ptr, tree phi, int flags) { |