diff options
author | Tristan Gingold <gingold@adacore.com> | 2012-04-10 08:32:23 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@gcc.gnu.org> | 2012-04-10 08:32:23 +0000 |
commit | 5973ae1ac297b881e712b44335a231e892e6af25 (patch) | |
tree | 5231c973389ab0e251d4209d2828824ec5074bc8 /gcc | |
parent | 26eb69c619a491be1a40413b98d010b2d3ef984a (diff) | |
download | gcc-5973ae1ac297b881e712b44335a231e892e6af25.zip gcc-5973ae1ac297b881e712b44335a231e892e6af25.tar.gz gcc-5973ae1ac297b881e712b44335a231e892e6af25.tar.bz2 |
gengtype.c (main): Make uintptr_t a known type.
gcc/
2012-04-10 Tristan Gingold <gingold@adacore.com>
* gengtype.c (main): Make uintptr_t a known type.
include/
2012-04-10 Tristan Gingold <gingold@adacore.com>
* splay-tree.h: Conditionnaly includes stdint.h and inttypes.h
(libi_uhostptr_t, libi_shostptr_t): Remove, replaced by uintptr_t.
From-SVN: r186269
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/gengtype.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3a1819d..2e39f78 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2012-04-10 Tristan Gingold <gingold@adacore.com> + + * gengtype.c (main): Make uintptr_t a known type. + 2012-04-10 Richard Guenther <rguenther@suse.de> * tree-pass.h (tree_lowering_passes): Remove. diff --git a/gcc/gengtype.c b/gcc/gengtype.c index 7450eeb..fa45392 100644 --- a/gcc/gengtype.c +++ b/gcc/gengtype.c @@ -4976,6 +4976,7 @@ main (int argc, char **argv) POS_HERE (do_scalar_typedef ("double_int", &pos)); POS_HERE (do_scalar_typedef ("uint64_t", &pos)); POS_HERE (do_scalar_typedef ("uint8", &pos)); + POS_HERE (do_scalar_typedef ("uintptr_t", &pos)); POS_HERE (do_scalar_typedef ("jword", &pos)); POS_HERE (do_scalar_typedef ("JCF_u2", &pos)); POS_HERE (do_scalar_typedef ("void", &pos)); |