From 7de515541f1d2325ef08839db0dd99a3b0e612a3 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Sat, 15 Jul 2000 03:03:11 +0000 Subject: [PATCH] * README.Portability: Small update. From-SVN: r35040 --- gcc/ChangeLog | 4 ++++ gcc/README.Portability | 7 +++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3fca30e3616..84deb16eee0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2000-07-15 Neil Booth + + * README.Portability: Small update. + 2000-07-15 Neil Booth * README.Portability: New file. diff --git a/gcc/README.Portability b/gcc/README.Portability index 1c2df58edad..a7331512d28 100644 --- a/gcc/README.Portability +++ b/gcc/README.Portability @@ -195,6 +195,7 @@ In K+R C, you have to cast enum types to use them as integers, and some compilers in particular give lots of warnings for using an enum as an array index. + Bitfields --------- @@ -232,6 +233,7 @@ values in unsigned char fit in an int, it promotes to int). ** Not having any argument whose type is a short type (char, short, float of any flavor) and subject to promotion. ** + Trigraphs --------- @@ -246,14 +248,15 @@ Suffixes on Integer Constants **Using a 'u' suffix on integer constants.** + Common Coding Pitfalls + ====================== + errno ----- errno might be declared as a macro. - Common Coding Pitfalls - ====================== Implicit int ------------