add a note

llvm-svn: 39179
This commit is contained in:
Chris Lattner 2006-11-19 01:17:45 +00:00
parent 9dfdb3c70d
commit 52f3dc1ee3
2 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,10 @@
// Random Notes
//===---------------------------------------------------------------------===//
C90/C99/C++ Comparisons:
http://david.tribble.com/text/cdiffs.htm
//===---------------------------------------------------------------------===//
Extensions:

View File

@ -101,6 +101,9 @@ III. Current advantages over GCC:
* Faster than GCC at parsing, lexing, and preprocessing.
* Defers exposing platform-specific stuff to as late as possible, tracks use of
platform-specific features (e.g. #ifdef PPC) to allow 'portable bytecodes'.
* The lexer doesn't rely on the "lexer hack": it has no notion of scope and
does not catagorize identifiers as types or variables, this is up to the
parser to decide.
Future Features: