[cfe-commits] r38968 - /cfe/cfe/trunk/README.txt
sabre at cs.uiuc.edu
sabre at cs.uiuc.edu
Wed Jul 11 09:26:20 PDT 2007
Author: sabre
Date: Wed Jul 11 11:26:20 2007
New Revision: 38968
URL: http://llvm.org/viewvc/llvm-project?rev=38968&view=rev
Log:
Minor edits
Modified:
cfe/cfe/trunk/README.txt
Modified: cfe/cfe/trunk/README.txt
URL: http://llvm.org/viewvc/llvm-project/cfe/cfe/trunk/README.txt?rev=38968&r1=38967&r2=38968&view=diff
==============================================================================
--- cfe/cfe/trunk/README.txt (original)
+++ cfe/cfe/trunk/README.txt Wed Jul 11 11:26:20 2007
@@ -40,7 +40,7 @@
token in the AST. AST's are 'streamed' out a top-level
declaration at a time, allowing clients to use decl-at-a-time
processing, build up entire translation units, or even build
- 'whole program' ASTs depending on how the use the APIs.
+ 'whole program' ASTs depending on how they use the APIs.
libast2llvm - [Planned] Lower the AST to LLVM IR for optimization & codegen.
clang - An example client of the libraries at various levels.
@@ -69,7 +69,7 @@
- Help: clang --help
- Standard GCC options accepted: -E, -I*, -i*, -pedantic, etc.
- Make diagnostics more gcc-like: -fno-caret-diagnostics -fno-show-column
- - Enable metric printing: --stats
+ - Enable metric printing: -stats
* -parse-noop is the default mode.
@@ -99,7 +99,7 @@
Future Features:
* Fine grained diag control within the source (#pragma enable/disable warning).
- * Faster than GCC at IR generation [measure when complete].
+ * Faster than GCC at AST generation [measure when complete].
* Better token tracking within macros? (Token came from this line, which is
a macro argument instantiated here, recursively instantiated here).
* Fast #import!
@@ -216,7 +216,7 @@
New language feature: Configuration queries:
- Instead of #ifdef __POWERPC__, use "if (strcmp(`cpu`, __POWERPC__))", or
- some other syntax.
+ some other, better, syntax.
- Use it to increase the number of "architecture-clean" #import'd files,
allowing a single index to be used for all fat slices.
More information about the cfe-commits
mailing list