Fixed some grammer and spelling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27062 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Jim Laskey 2006-03-24 09:20:27 +00:00
parent 8156f657b7
commit 2d395d9f65

View File

@ -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 function. A return variable is used to track the result of a function and has
no source correspondent.</p> 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 Name the source variable name. Compile unit and line indicate where the
variable was defined. Type descriptor defines the declared type of the variable was defined. Type descriptor defines the declared type of the
variable.</p> variable.</p>
@ -801,10 +801,11 @@ ending.</p>
void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, { }* ) void %<a href="#format_common_declare">llvm.dbg.declare</a>( { } *, { }* )
</pre> </pre>
<p>This intrinsic provides information about a local element (ex. variable.) <p>This intrinsic provides information about a local element (ex. variable.) The
The first argument as a AllocA for the variable cast to a <tt>{ }*</tt>. The second first argument is the alloca for the variable, cast to a <tt>{ }*</tt>. The
argument is the <tt>%<a href="#format_variables">llvm.dbg.variable</a></tt> second argument is the <tt>%<a
containing the description of the variable, also cast to a <tt>{ }*</tt>.</p> href="#format_variables">llvm.dbg.variable</a></tt> containing the description
of the variable, also cast to a <tt>{ }*</tt>.</p>
</div> </div>