aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-03-24 09:20:27 +0000
committerJim Laskey <jlaskey@mac.com>2006-03-24 09:20:27 +0000
commit2d395d9f656366f0f7c41c397a56bfcc3f24675a (patch)
tree5b18f61cb88fbc7d964d2f9418a7c71acbf65f06 /docs
parent8156f657b706a74969a4f8aefb3dcef6f497d6b8 (diff)
downloadexternal_llvm-2d395d9f656366f0f7c41c397a56bfcc3f24675a.zip
external_llvm-2d395d9f656366f0f7c41c397a56bfcc3f24675a.tar.gz
external_llvm-2d395d9f656366f0f7c41c397a56bfcc3f24675a.tar.bz2
Fixed some grammer and spelling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27062 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/SourceLevelDebugging.html11
1 files changed, 6 insertions, 5 deletions
diff --git a/docs/SourceLevelDebugging.html b/docs/SourceLevelDebugging.html
index 2cbd35f..447a659 100644
--- a/docs/SourceLevelDebugging.html
+++ b/docs/SourceLevelDebugging.html
@@ -690,7 +690,7 @@ argument variable is any variable that appears as a formal argument to the
function. A return variable is used to track the result of a function and has
no source correspondent.</p>
-<p>The context is eitehr the subprogram or block where the variable is defined.
+<p>The context is either the subprogram or block where the variable is defined.
Name the source variable name. Compile unit and line indicate where the
variable was defined. Type descriptor defines the declared type of the
variable.</p>
@@ -801,10 +801,11 @@ ending.</p>
void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, { }* )
</pre>
-<p>This intrinsic provides information about a local element (ex. variable.)
-The first argument as a AllocA for the variable cast to a <tt>{ }*</tt>. The second
-argument is the <tt>%<a href="#format_variables">llvm.dbg.variable</a></tt>
-containing the description of the variable, also cast to a <tt>{ }*</tt>.</p>
+<p>This intrinsic provides information about a local element (ex. variable.) The
+first argument is the alloca for the variable, cast to a <tt>{ }*</tt>. The
+second argument is the <tt>%<a
+href="#format_variables">llvm.dbg.variable</a></tt> containing the description
+of the variable, also cast to a <tt>{ }*</tt>.</p>
</div>