diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-21 13:25:56 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-21 07:25:56 -0600 |
commit | a6d7e156393f7ec4725dd7193df277c3b5ee63ae (patch) | |
tree | 4272c9905b0cc71aac280da213c0de949ff34861 /gcc/LANGUAGES | |
parent | 1eeed24eb2000486a3abab4395c735c385925813 (diff) | |
download | gcc-a6d7e156393f7ec4725dd7193df277c3b5ee63ae.tar.gz |
c-common.c (type_for_mode): Handle TI types.
* c-common.c (type_for_mode): Handle TI types.
* c-decl.c (intTI_type_node, unsigned_int_TI_type_node): Define.
(init_decl_processing): Handle TI types.
* c-tree.h (intTI_type_node, unsigned_int_TI_type_node): Declare.
From-SVN: r19355
Diffstat (limited to 'gcc/LANGUAGES')
-rw-r--r-- | gcc/LANGUAGES | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gcc/LANGUAGES b/gcc/LANGUAGES index 302fcd2de22..544e12b4105 100644 --- a/gcc/LANGUAGES +++ b/gcc/LANGUAGES @@ -6,6 +6,16 @@ time as we can formally start documenting the interface this file will serve as a repository for information on these interface and any incompatable changes we've made. +Apr 21, 1998: + Front ends which link with c-common or other files from the C/C++ + front-ends may need to handle TI types. Look for references to + [unsigned]int_DI_type_node in your front end. If you have references + to these variables, you'll need up update the front end. + + To update the front end you must mirror all the code which currently + deals with intDI_type_node to also handle intTI_type_node. + + Apr 7, 1998: The interface between toplev.c and the language front ends for opening the source file has changed: |