aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMingjie Xing <mingjie.xing@gmail.com>2010-11-19 01:51:07 +0000
committerMingjie Xing <xmj@gcc.gnu.org>2010-11-19 01:51:07 +0000
commit6d119d8f859c529256c0d244b518eb4d2cf909c9 (patch)
treed4c374d748382b0f686ebf8a3e9cf3f0e1599f75
parentb0210d0030c1257129c2ce7cf92dd68e99e2693f (diff)
downloadgcc-6d119d8f859c529256c0d244b518eb4d2cf909c9.zip
gcc-6d119d8f859c529256c0d244b518eb4d2cf909c9.tar.gz
gcc-6d119d8f859c529256c0d244b518eb4d2cf909c9.tar.bz2
Fix typo in the comment.
From-SVN: r166927
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/resource.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index f5b8028..6a5f554 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2010-11-19 Mingjie Xing <mingjie.xing@gmail.com>
+
+ * resource.h (struct resources): Fix typo in the comment.
+
2010-11-19 Uros Bizjak <ubizjak@gmail.com>
PR target/46546
diff --git a/gcc/resource.h b/gcc/resource.h
index b13782f..3b26423 100644
--- a/gcc/resource.h
+++ b/gcc/resource.h
@@ -33,7 +33,7 @@ along with GCC; see the file COPYING3. If not see
struct resources
{
char memory; /* Insn sets or needs a memory location. */
- char unch_memory; /* Insn sets of needs a "unchanging" MEM. */
+ char unch_memory; /* Insn sets or needs an "unchanging" MEM. */
char volatil; /* Insn sets or needs a volatile memory loc. */
char cc; /* Insn sets or needs the condition codes. */
HARD_REG_SET regs; /* Which registers are set or needed. */