[llvm-commits] CVS: llvm/docs/LangRef.html

Jeff Cohen jeffc at jolt-lang.org
Sun Apr 22 07:56:54 PDT 2007



Changes in directory llvm/docs:

LangRef.html updated: 1.236 -> 1.237
---
Log message:

Undo erroneous corrections.

---
Diffs of the changes:  (+5 -5)

 LangRef.html |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.236 llvm/docs/LangRef.html:1.237
--- llvm/docs/LangRef.html:1.236	Sat Apr 21 20:17:39 2007
+++ llvm/docs/LangRef.html	Sun Apr 22 09:56:37 2007
@@ -1396,12 +1396,12 @@
   <dt><b><tt>uitofp ( CST to TYPE )</tt></b></dt>
   <dd>Convert an unsigned integer constant to the corresponding floating point
   constant. TYPE must be floating point. CST must be of integer type. If the
-  value won't fit in the floating point type, precision may be lost.</dd>
+  value won't fit in the floating point type, the results are undefined.</dd>
 
   <dt><b><tt>sitofp ( CST to TYPE )</tt></b></dt>
   <dd>Convert a signed integer constant to the corresponding floating point
   constant. TYPE must be floating point. CST must be of integer type. If the
-  value won't fit in the floating point type, precision may be lost.</dd>
+  value won't fit in the floating point type, the results are undefined.</dd>
 
   <dt><b><tt>ptrtoint ( CST to TYPE )</tt></b></dt>
   <dd>Convert a pointer typed constant to the corresponding integer constant
@@ -3069,7 +3069,7 @@
 <h5>Semantics:</h5>
 <p>The '<tt>uitofp</tt>' instruction interprets its operand as an unsigned
 integer quantity and converts it to the corresponding floating point value. If
-the value cannot fit in the floating point value, precision may be lost.</p>
+the value cannot fit in the floating point value, the results are undefined.</p>
 
 
 <h5>Example:</h5>
@@ -3102,7 +3102,7 @@
 <h5>Semantics:</h5>
 <p>The '<tt>sitofp</tt>' instruction interprets its operand as a signed
 integer quantity and converts it to the corresponding floating point value. If
-the value cannot fit in the floating point value, precision may be lost.</p>
+the value cannot fit in the floating point value, the results are undefined.</p>
 
 <h5>Example:</h5>
 <pre>
@@ -4728,7 +4728,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.org">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2007/04/22 01:17:39 $
+  Last modified: $Date: 2007/04/22 14:56:37 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list