diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-27 21:17:48 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-27 21:17:48 +0000 |
commit | 40487e450b2cfcad657f68db6a8c60f09cb6ddca (patch) | |
tree | 4bc0d0e9527ae068858c1612b3cefbcadbdcf71b | |
parent | ff4aa6dbe2509fa7c27243d98b611fdb4a4912ea (diff) | |
download | bcm5719-llvm-40487e450b2cfcad657f68db6a8c60f09cb6ddca.tar.gz bcm5719-llvm-40487e450b2cfcad657f68db6a8c60f09cb6ddca.zip |
Fix grammaro
llvm-svn: 10245
-rw-r--r-- | llvm/docs/ProgrammersManual.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/ProgrammersManual.html b/llvm/docs/ProgrammersManual.html index 1ac08b42f4e..56751e2bd4e 100644 --- a/llvm/docs/ProgrammersManual.html +++ b/llvm/docs/ProgrammersManual.html @@ -388,7 +388,7 @@ argument: </p> <p> </p> <pre> $ opt < a.bc > /dev/null -mypass<br> <no output><br> $ opt < a.bc > /dev/null -mypass -debug<br> I am here!<br> $<br></pre> <p> Using the <tt>DEBUG()</tt> macro instead of a home-brewed solution -allows you to now have to create "yet another" command line option for +allows you to not have to create "yet another" command line option for the debug output for your pass. Note that <tt>DEBUG()</tt> macros are disabled for optimized builds, so they do not cause a performance impact at all (for the same reason, they should also not contain |