* java-gimplify.c (java_gimplify_expr): Correct minor typos.
authorRanjit Mathew <rmathew@hotmail.com>
Fri, 14 May 2004 02:02:37 +0000 (02:02 +0000)
committerRanjit Mathew <rmathew@gcc.gnu.org>
Fri, 14 May 2004 02:02:37 +0000 (02:02 +0000)
From-SVN: r81825

gcc/java/ChangeLog
gcc/java/java-gimplify.c

index 7ac2ba595549f81a492257d8dfaabd688611f8af..b7cb8c4630ceb611fab322c57af243c672d8966b 100644 (file)
@@ -1,3 +1,7 @@
+2004-05-14  Ranjit Mathew  <rmathew@hotmail.com>
+
+       * java-gimplify.c (java_gimplify_expr): Correct minor typos.
+
 2004-05-13  Diego Novillo  <dnovillo@redhat.com>
 
        Merge from tree-ssa-20020619-branch.  See
index ae8acd54c1249debfe6e7c40992ccd4fed020be6..f32a4c809b0d31772d702de1cb0d8d8c0271404d 100644 (file)
@@ -1,6 +1,6 @@
 /* Java(TM) language-specific gimplification routines.
 
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -63,10 +63,10 @@ java_gimplify_expr (tree *expr_p, tree *pre_p ATTRIBUTE_UNUSED,
   char code_class = TREE_CODE_CLASS(TREE_CODE (*expr_p));
 
   /* Java insists on strict left-to-right evaluation of expressions.
-     A problem may arise if a variable used in the lhs of a binary
-     operation is altered by an assignment to that value in the rhs
+     A problem may arise if a variable used in the LHS of a binary
+     operation is altered by an assignment to that value in the RHS
      before we've performed the operation.  So, we always copy every
-     LHS to a temprorary variable.  
+     LHS to a temporary variable.  
 
      FIXME: Are there any other cases where we should do this?
      Parameter lists, maybe?  Or perhaps that's unnecessary because