summaryrefslogtreecommitdiff
path: root/clang/README.txt
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-11-19 01:17:45 +0000
committerChris Lattner <sabre@nondot.org>2006-11-19 01:17:45 +0000
commit52f3dc1ee3414bcaa456e77810f8c81c3657ef91 (patch)
treed006fa3ad8a1b2af3ba4933f581e3a92c6ea78b0 /clang/README.txt
parent9dfdb3c70df19fdfbb2eb56e4482ad4776ad56ac (diff)
downloadllvm-52f3dc1ee3414bcaa456e77810f8c81c3657ef91.tar.gz
add a note
llvm-svn: 39179
Diffstat (limited to 'clang/README.txt')
-rw-r--r--clang/README.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/README.txt b/clang/README.txt
index 7db3c529f05e..caadc7cafde5 100644
--- a/clang/README.txt
+++ b/clang/README.txt
@@ -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: