diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-09 18:13:12 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-09 18:13:12 +0000 |
commit | 2dc45b818f2e8b41376fc23563c67a7ecf093323 (patch) | |
tree | e51d89ae4c3a6b05fa0e94363216960e27eedb06 /docs/LangRef.html | |
parent | cc16dc3249d4484145f2d1e88c8fff8ad3822255 (diff) | |
download | external_llvm-2dc45b818f2e8b41376fc23563c67a7ecf093323.zip external_llvm-2dc45b818f2e8b41376fc23563c67a7ecf093323.tar.gz external_llvm-2dc45b818f2e8b41376fc23563c67a7ecf093323.tar.bz2 |
More grammaro's fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18708 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 23 |
1 files changed, 9 insertions, 14 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index ec18f23..d3695bb 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -893,18 +893,15 @@ file:</p> </div> <!-- ======================================================================= --> -<div class="doc_subsection"><a name="undefvalues">Undefined Values</a> -</div> - +<div class="doc_subsection"><a name="undefvalues">Undefined Values</a></div> <div class="doc_text"> + <p>The string '<tt>undef</tt>' is recognized as a type-less constant that has + no specific value. Undefined values may be of any type, and be used anywhere + a constant is permitted.</p> -<p>The string '<tt>undef</tt>' is recognized as a filler that has no specified -value. Undefined values may be of any type, and be used anywhere a constant -is.</p> - -<p>Undefined values are used to indicate the compiler that the program is well -defined no matter what value is used, giving it more freedom.</p> - + <p>Undefined values indicate to the compiler that the program is well defined + no matter what value is used, giving the compiler more freedom to optimize. + </p> </div> <!-- ======================================================================= --> @@ -933,14 +930,12 @@ following is the syntax for constant expressions:</p> <dt><b><tt>OPCODE ( LHS, RHS )</tt></b></dt> - <dd>Perform the specied operation of the LHS and RHS constants. OPCODE may be - any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise + <dd>Perform the specified operation of the LHS and RHS constants. OPCODE may + be any of the <a href="#binaryops">binary</a> or <a href="#bitwiseops">bitwise binary</a> operations. The constraints on operands are the same as those for the corresponding instruction (e.g. no bitwise operations on floating point are allowed).</dd> - </dl> - </div> <!-- *********************************************************************** --> |