diff options
author | Devang Patel <dpatel@apple.com> | 2008-11-21 19:35:57 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2008-11-21 19:35:57 +0000 |
commit | b885a91a1281c3f63aff7c9377e1114d3973fa7e (patch) | |
tree | f61f6312dd49329ec0860162fb6646904aa34cc5 /llvm/docs/SourceLevelDebugging.html | |
parent | e2caaaa13c0d429c4ec28a822ec44826d3faa012 (diff) | |
download | bcm5719-llvm-b885a91a1281c3f63aff7c9377e1114d3973fa7e.tar.gz bcm5719-llvm-b885a91a1281c3f63aff7c9377e1114d3973fa7e.zip |
Document TEST=dbgopt
llvm-svn: 59839
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.html')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/llvm/docs/SourceLevelDebugging.html b/llvm/docs/SourceLevelDebugging.html index 172ede02e6a..4984521f599 100644 --- a/llvm/docs/SourceLevelDebugging.html +++ b/llvm/docs/SourceLevelDebugging.html @@ -208,6 +208,24 @@ elimination and inlining), but you might lose the ability to modify the program 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> <!-- *********************************************************************** --> |