diff options
author | Bill Wendling <isanbard@gmail.com> | 2008-03-24 05:58:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2008-03-24 05:58:47 +0000 |
commit | 16b412c6e278d84bcf71b1bf07a7d3c24e81a49e (patch) | |
tree | 2468794b38c7238766ff0bd687ce3618d67da1a7 /tools | |
parent | ae851b63af2cc633c974c96ced2795be78fd0cd9 (diff) | |
download | external_llvm-16b412c6e278d84bcf71b1bf07a7d3c24e81a49e.zip external_llvm-16b412c6e278d84bcf71b1bf07a7d3c24e81a49e.tar.gz external_llvm-16b412c6e278d84bcf71b1bf07a7d3c24e81a49e.tar.bz2 |
Small format/grammar changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48723 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc2/doc/LLVMCC-Tutorial.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvmc2/doc/LLVMCC-Tutorial.rst b/tools/llvmc2/doc/LLVMCC-Tutorial.rst index 8374cad..9f66e74 100644 --- a/tools/llvmc2/doc/LLVMCC-Tutorial.rst +++ b/tools/llvmc2/doc/LLVMCC-Tutorial.rst @@ -1,13 +1,13 @@ Tutorial - Writing LLVMCC Configuration files ============================================= -LLVMCC is a generic compiler driver(just like ``gcc``), designed to be +LLVMCC is a generic compiler driver (just like ``gcc``), designed to be customizable and extensible. Its job is essentially to transform a set of input files into a set of targets, depending on configuration rules and user options. This tutorial describes how one can write configuration files for ``llvmcc``. -Since LLVMCC uses TableGen [1]_ as the language of its configuration +Because LLVMCC uses TableGen [1]_ as the language of its configuration files, you need to be familiar with it. Describing a toolchain |