[llvm-commits] [llvm] r59839 - /llvm/trunk/docs/SourceLevelDebugging.html

Devang Patel dpatel at apple.com
Fri Nov 21 11:36:01 PST 2008


Author: dpatel
Date: Fri Nov 21 13:35:57 2008
New Revision: 59839

URL: http://llvm.org/viewvc/llvm-project?rev=59839&view=rev
Log:

Document TEST=dbgopt

Modified:
    llvm/trunk/docs/SourceLevelDebugging.html

Modified: llvm/trunk/docs/SourceLevelDebugging.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/SourceLevelDebugging.html?rev=59839&r1=59838&r2=59839&view=diff

==============================================================================
--- llvm/trunk/docs/SourceLevelDebugging.html (original)
+++ llvm/trunk/docs/SourceLevelDebugging.html Fri Nov 21 13:35:57 2008
@@ -208,6 +208,24 @@
 and call functions where were optimized out of the program, or inlined away
 completely.</p>
 
+<p> <a href=http://llvm.org/docs/TestingGuide.html#quicktestsuite> 
+LLVM test suite </a> provides a framework to test optimizer's handling of
+debugging information. It can be run like this:</p>
+
+<div class="doc_code">
+<pre>
+% cd llvm/projects/test-suite/MultiSource/Benchmarks  # or some other level
+% make TEST=dbgopt
+</pre>
+</div>
+
+<p>
+This will test impact of debugging information on optimization passes. If
+debugging information influences optimization passes then it will be reported
+as a failure. See <a href=//llvm.org/docs/TestingGuide.html> TestingGuide</a>
+for more information on LLVM test infratsture and how to run various tests.
+</p>
+
 </div>
 
 <!-- *********************************************************************** -->





More information about the llvm-commits mailing list