[cfe-commits] r39179 - in /cfe/cfe/trunk: NOTES.txt README.txt

sabre at cs.uiuc.edu sabre at cs.uiuc.edu
Wed Jul 11 09:40:39 PDT 2007


Author: sabre
Date: Wed Jul 11 11:40:39 2007
New Revision: 39179

URL: http://llvm.org/viewvc/llvm-project?rev=39179&view=rev
Log:
add a note

Modified:
    cfe/cfe/trunk/NOTES.txt
    cfe/cfe/trunk/README.txt

Modified: cfe/cfe/trunk/NOTES.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/NOTES.txt?rev=39179&r1=39178&r2=39179&view=diff

==============================================================================
--- cfe/cfe/trunk/NOTES.txt (original)
+++ cfe/cfe/trunk/NOTES.txt Wed Jul 11 11:40:39 2007
@@ -2,6 +2,10 @@
 // Random Notes
 //===---------------------------------------------------------------------===//
 
+C90/C99/C++ Comparisons:
+http://david.tribble.com/text/cdiffs.htm
+
+
 //===---------------------------------------------------------------------===//
 Extensions:
 

Modified: cfe/cfe/trunk/README.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/README.txt?rev=39179&r1=39178&r2=39179&view=diff

==============================================================================
--- cfe/cfe/trunk/README.txt (original)
+++ cfe/cfe/trunk/README.txt Wed Jul 11 11:40:39 2007
@@ -101,6 +101,9 @@
  * 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:
 





More information about the cfe-commits mailing list