diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-06-10 10:44:38 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-06-10 04:44:38 -0600 |
commit | 07fb7f791dcaef1b7951d7e33e065981719b83d4 (patch) | |
tree | 21e48889685e843c11eb67ecb0bacd7d42ae8929 /gcc/c-decl.c | |
parent | 4324833a1732f77c90309a8a2b3d5d4bed632d3e (diff) | |
download | gcc-07fb7f791dcaef1b7951d7e33e065981719b83d4.zip gcc-07fb7f791dcaef1b7951d7e33e065981719b83d4.tar.gz gcc-07fb7f791dcaef1b7951d7e33e065981719b83d4.tar.bz2 |
* decl.c (init_decl_processing): Fix typo.
From-SVN: r20412
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index 0f2a3f2c..94dade7 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -3016,7 +3016,7 @@ init_decl_processing () pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node)); intTI_type_node = make_signed_type (GET_MODE_BITSIZE (TImode)); - pushdecl (build_decl (TYPE_DECL, NULL_TREE, intDI_type_node)); + pushdecl (build_decl (TYPE_DECL, NULL_TREE, intTI_type_node)); unsigned_intQI_type_node = make_unsigned_type (GET_MODE_BITSIZE (QImode)); pushdecl (build_decl (TYPE_DECL, NULL_TREE, unsigned_intQI_type_node)); |