diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-03-23 17:58:46 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-03-23 17:58:46 +0000 |
commit | 108a638b5aff6ef6c519a79193086f0822701e0e (patch) | |
tree | 713dcf50f05fcdd020447100a92378782752f807 /docs/SourceLevelDebugging.html | |
parent | 383e0092bf7c0dd197e399f636a6443f2cf2d5b6 (diff) |
Correction of stoppoint arguments.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26983 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/SourceLevelDebugging.html')
-rw-r--r-- | docs/SourceLevelDebugging.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html index 62417f10b9..2cbd35f3e9 100644 --- a/docs/SourceLevelDebugging.html +++ b/docs/SourceLevelDebugging.html @@ -716,15 +716,16 @@ provide debug information at various points in generated code.</p> <div class="doc_text"> <pre> - void %<a href="#format_common_stoppoint">llvm.dbg.stoppoint</a>( uint, uint, %<a href="#format_compile_units">llvm.dbg.compile_unit</a>* ) + void %<a href="#format_common_stoppoint">llvm.dbg.stoppoint</a>( uint, uint, { }* ) </pre> <p>This intrinsic is used to provide correspondence between the source file and the generated code. The first argument is the line number (base 1), second argument si the column number (0 if unknown) and the third argument the source -compile unit. Code following a call to this intrinsic will have been defined in -close proximity of the line, column and file. This information holds until the -next call to <tt>%<a +<tt>%<a href="#format_compile_units">llvm.dbg.compile_unit</a>*</tt> cast to a +<tt>{ }*</tt>. Code following a call to this intrinsic will have been defined +in close proximity of the line, column and file. This information holds until +the next call to <tt>%<a href="#format_common_stoppoint">lvm.dbg.stoppoint</a></tt>.</p> </div> |