diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-08-10 16:38:18 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-08-10 16:38:18 +0000 |
commit | a39bf3da7b13baff1326acbd25d69183ff00e11e (patch) | |
tree | cadd5cd8535ed8143779a52a27af73d6f31cc0af /llvm/docs/CommandLine.html | |
parent | 553215934067aa705ca27be6fd52c29b87689d8c (diff) | |
download | bcm5719-llvm-a39bf3da7b13baff1326acbd25d69183ff00e11e.tar.gz bcm5719-llvm-a39bf3da7b13baff1326acbd25d69183ff00e11e.zip |
Fixed some spellos and grammaros.
llvm-svn: 15610
Diffstat (limited to 'llvm/docs/CommandLine.html')
-rw-r--r-- | llvm/docs/CommandLine.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CommandLine.html b/llvm/docs/CommandLine.html index 73533750191..aea3ec843c0 100644 --- a/llvm/docs/CommandLine.html +++ b/llvm/docs/CommandLine.html @@ -458,10 +458,10 @@ things it doesn't know about, like enums or '<tt>int*</tt>'s?</p> <p>The answer is that it uses a table driven generic parser (unless you specify your own parser, as described in the <a href="#extensionguide">Extension -Guide</a>). This parser maps literal strings to whatever type is required, are +Guide</a>). This parser maps literal strings to whatever type is required, and requires you to tell it what this mapping should be.</p> -<p>Lets say that we would like to add four optimizations levels to our +<p>Lets say that we would like to add four optimization levels to our optimizer, using the standard flags "<tt>-g</tt>", "<tt>-O0</tt>", "<tt>-O1</tt>", and "<tt>-O2</tt>". We could easily implement this with boolean options like above, but there are several problems with this strategy:</p> |