]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Update version numbers
authorMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 22 Nov 2002 17:54:04 +0000 (17:54 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 22 Nov 2002 17:54:04 +0000 (17:54 +0000)
From-SVN: r59380

12 files changed:
gcc/ada/gnatvsn.ads
gcc/c-typeck.c
gcc/doc/include/gcc-common.texi
gcc/f/root.texi
gcc/f/version.c
gcc/java/gcj.texi
gcc/tree.def
gcc/version.c
libf2c/libF77/Version.c
libf2c/libI77/Version.c
libf2c/libU77/Version.c
libstdc++-v3/libsupc++/eh_personality.cc

index 061490198fd9288a347150166b00fb60a403ae53..4b66ca1652b3e33e011cafa39af64a6943eb4ea2 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 S p e c                                  --
 --                                                                          --
---                            $Revision: 1.2.12.65.2.121 $
+--                            $Revision: 1.2.12.65.2.122 $
 --                                                                          --
 --          Copyright (C) 1992-2002 Free Software Foundation, Inc.          --
 --                                                                          --
@@ -38,7 +38,7 @@
 
 package Gnatvsn is
 
-   Gnat_Version_String : constant String := "3.2.1 20021122 (release)";
+   Gnat_Version_String : constant String := "3.2.2 20021122 (prerelease)";
    --  Version output when GNAT (compiler), or its related tools, including
    --  GNATBIND, GNATCHOP, GNATFIND, GNATLINK, GNATMAKE, GNATXREF, are run
    --  (with appropriate verbose option switch set).
index d400f3969b68d46ec15a9d4a901d5f3f1fc739fd..6020862f4101ff7711e1dd9cb27c825a2a66aa76 100644 (file)
@@ -2888,9 +2888,6 @@ build_unary_op (code, xarg, flag)
        tree inc;
        tree result_type = TREE_TYPE (arg);
 
-       arg = get_unwidened (arg, 0);
-       argtype = TREE_TYPE (arg);
-
        /* Compute the increment.  */
 
        if (typecode == POINTER_TYPE)
@@ -2919,6 +2916,9 @@ build_unary_op (code, xarg, flag)
        else
          inc = integer_one_node;
 
+       arg = get_unwidened (arg, 0);
+       argtype = TREE_TYPE (arg);
+
        inc = convert (argtype, inc);
 
        /* Handle incrementing a cast-expression.  */
index f25eee1cc628bcbaac09abf3a3a9b8d9116b487e..f4896939c955e16fe9dd05eff54fa261f7f6e804 100644 (file)
@@ -1,10 +1,10 @@
-@c Copyright (C) 2001 Free Software Foundation, Inc.
+@c Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 @c This is part of the GCC manual.
 @c For copying conditions, see the file gcc.texi.
 
 @c Common values used in the GCC manuals:
 
-@set version-GCC 3.2
+@set version-GCC 3.2.2
 
 @c Common macros to support generating man pages:
 
index 788084decdde71d5c6f561e89c0db528e343fa14..361e2600c229aeaf453371af6ad80f7f3bc5cabc 100644 (file)
@@ -3,7 +3,7 @@
 @c (e.g. a release branch in the CVS repository for gcc),
 @c clear this and set the version information correctly.
 @clear DEVELOPMENT
-@set version-gcc 3.2
+@set version-gcc 3.2.2
 
 @set email-general gcc@@gcc.gnu.org
 @set email-help gcc-help@@gcc.gnu.org
index 1d5a14fce0944cea044dbe6eccbdfd954bb51561..fbfc48a3aad4d89b88b2c41e33ba2eddae4c02c9 100644 (file)
@@ -1,4 +1,4 @@
 #include "ansidecl.h"
 #include "f/version.h"
 
-const char *const ffe_version_string = "3.2.1 20021122 (release)";
+const char *const ffe_version_string = "3.2.2 20021122 (prerelease)";
index 4f15a6a61af1fb58e7f625815a1372863c1f050a..021854c1ba97d7464918e6dfee17ba9e206d087e 100644 (file)
@@ -11,7 +11,7 @@
 @set copyrights-gcj 2001, 2002
 
 @c Versions
-@set version-gcc 3.2
+@set version-gcc 3.2.2
 @set which-gcj GCC-@value{version-gcc}
 
 @macro gcctabopt{body}
index 9cfe139ac5716939776d7c0b9e0b0abc06c217f7..f0f43a7fa34d6812a62b9b4242932dbfcc699609 100644 (file)
@@ -757,9 +757,12 @@ DEFTREECODE (CONJ_EXPR, "conj_expr", '1', 1)
 DEFTREECODE (REALPART_EXPR, "realpart_expr", '1', 1)
 DEFTREECODE (IMAGPART_EXPR, "imagpart_expr", '1', 1)
 
-/* Nodes for ++ and -- in C.
-   The second arg is how much to increment or decrement by.
-   For a pointer, it would be the size of the object pointed to.  */
+/* The first argument is the lvalue to be incremented or decremented.
+   The second argument is the value that should be added or
+   subtracted.  If the first argument has pointer type, the second
+   argument is interpreted as the number of bytes to add or subtract
+   from the address.  The second argument must not be a constant
+   zero.  */
 DEFTREECODE (PREDECREMENT_EXPR, "predecrement_expr", 'e', 2)
 DEFTREECODE (PREINCREMENT_EXPR, "preincrement_expr", 'e', 2)
 DEFTREECODE (POSTDECREMENT_EXPR, "postdecrement_expr", 'e', 2)
index b68523712d9e160ed7b9e09b7e572e25158154e9..08563f85cfd86763b86efca8e0df997870f753c7 100644 (file)
@@ -1,4 +1,4 @@
 #include "ansidecl.h"
 #include "version.h"
 
-const char *const version_string = "3.2.1";
+const char *const version_string = "3.2.2 20021122 (prerelease)";
index 92ddc2f765186cbfd094bb916cb4df43971556c1..347ac66561e54a596d9e1feddea3b6b55062a803 100644 (file)
@@ -3,7 +3,7 @@ static char junk[] = "\n@(#)LIBF77 VERSION 20000929\n";
 /*
 */
 
-char __G77_LIBF77_VERSION__[] = "3.2.1 20021122 (release)";
+char __G77_LIBF77_VERSION__[] = "3.2.2 20021122 (prerelease)";
 
 /*
 2.00   11 June 1980.  File version.c added to library.
index 1c438b9daf31698174cc0faab5012b75f7c9763a..b0e3e9db9fa66bc17205bd5332c186b0781bbc93 100644 (file)
@@ -3,7 +3,7 @@ static char junk[] = "\n@(#) LIBI77 VERSION pjw,dmg-mods 20001205\n";
 /*
 */
 
-char __G77_LIBI77_VERSION__[] = "3.2.1 20021122 (release)";
+char __G77_LIBI77_VERSION__[] = "3.2.2 20021122 (prerelease)";
 
 /*
 2.01   $ format added
index 215515c4c7fbc15261172f959755c57664576aa2..6d66309c2b15f2df0866a8690c064bf50733972a 100644 (file)
@@ -1,6 +1,6 @@
 static char junk[] = "\n@(#) LIBU77 VERSION 19980709\n";
 
-char __G77_LIBU77_VERSION__[] = "3.2.1 20021122 (release)";
+char __G77_LIBU77_VERSION__[] = "3.2.2 20021122 (prerelease)";
 
 #include <stdio.h>
 
index 35e93a3c473ee163806fac2dc0b0e6076d8c8ad9..58c266a97b4357148a620c4657897cce67971bc2 100644 (file)
@@ -1,5 +1,5 @@
 // -*- C++ -*- The GNU C++ exception personality routine.
-// Copyright (C) 2001 Free Software Foundation, Inc.
+// Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 //
 // This file is part of GNU CC.
 //