diff options
author | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-21 13:25:56 +0000 |
---|---|---|
committer | law <law@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-04-21 13:25:56 +0000 |
commit | 6274009cff8ffd7305f01821eb9282c10847100f (patch) | |
tree | 4272c9905b0cc71aac280da213c0de949ff34861 /gcc/LANGUAGES | |
parent | 7a9d1fec41b026a43331eadead1a6e6c238084ab (diff) | |
download | gcc-6274009cff8ffd7305f01821eb9282c10847100f.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@19355 138bc75d-0d04-0410-961f-82ee72b054a4
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: |