Fixed minor typos.

llvm-svn: 11800
This commit is contained in:
John Criswell 2004-02-24 16:13:56 +00:00
parent 90ea78edba
commit a92e58610d
1 changed files with 2 additions and 2 deletions

View File

@ -1283,8 +1283,8 @@ Instruction</a> </div>
<p>The '<tt>malloc</tt>' instruction allocates memory from the system
heap and returns a pointer to it.</p>
<h5>Arguments:</h5>
<p>The the '<tt>malloc</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
bytes of memory from the operating system, and returns a pointer of the
<p>The '<tt>malloc</tt>' instruction allocates <tt>sizeof(&lt;type&gt;)*NumElements</tt>
bytes of memory from the operating system and returns a pointer of the
appropriate type to the program. The second form of the instruction is
a shorter version of the first instruction that defaults to allocating
one element.</p>