From d8473378febba85e8b7b72311de08f4ddcc1bf5a Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Tue, 10 Aug 2004 16:38:18 +0000 Subject: Fixed some spellos and grammaros. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15610 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CommandLine.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/CommandLine.html') diff --git a/docs/CommandLine.html b/docs/CommandLine.html index 7353375..aea3ec8 100644 --- a/docs/CommandLine.html +++ b/docs/CommandLine.html @@ -458,10 +458,10 @@ things it doesn't know about, like enums or 'int*'s?

The answer is that it uses a table driven generic parser (unless you specify your own parser, as described in the Extension -Guide). This parser maps literal strings to whatever type is required, are +Guide). This parser maps literal strings to whatever type is required, and requires you to tell it what this mapping should be.

-

Lets say that we would like to add four optimizations levels to our +

Lets say that we would like to add four optimization levels to our optimizer, using the standard flags "-g", "-O0", "-O1", and "-O2". We could easily implement this with boolean options like above, but there are several problems with this strategy:

-- cgit v1.1