From: Chris Lattner Date: Fri, 1 Aug 2003 22:26:27 +0000 (+0000) Subject: Fix a bug X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=806e1867d96c18e1871344118b445775299f6f20;p=oota-llvm.git Fix a bug git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7499 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html index 89098c21e60..3536b538105 100644 --- a/docs/ProgrammersManual.html +++ b/docs/ProgrammersManual.html @@ -398,13 +398,9 @@ Then you can run your pass like this:

'bar' debug type No debug type (2) $ opt < a.bc > /dev/null -mypass -debug-only=foo - No debug type 'foo' debug type - No debug type (2) $ opt < a.bc > /dev/null -mypass -debug-only=bar - No debug type 'bar' debug type - No debug type (2) $

@@ -414,7 +410,7 @@ file, to specify the debug type for the entire module (if you do this before you #undef's). Also, you should use names more meaningful that "foo" and "bar", because there is no system in place to ensure that names do not conflict: if two different modules use the same string, they will all be turned on when -the name is specified. This allows all, say, instruction scheduling debug +the name is specified. This allows all, say, instruction scheduling, debug information to be enabled with -debug-type=InstrSched, even if the source lives in multiple files.

@@ -1793,6 +1789,6 @@ pointer to the parent Function. Chris Lattner -Last modified: Fri Aug 1 16:40:37 CDT 2003 +Last modified: Fri Aug 1 17:26:10 CDT 2003