[llvm-commits] [llvm] r108064 - /llvm/trunk/docs/LangRef.html

Dan Gohman gohman at apple.com
Sat Jul 10 17:08:34 PDT 2010


Author: djg
Date: Sat Jul 10 19:08:34 2010
New Revision: 108064

URL: http://llvm.org/viewvc/llvm-project?rev=108064&view=rev
Log:
sdiv overflow is outright undefined behavior, with or without the
'exact' keyword. Thanks to nlewycky for pointing this out!

Modified:
    llvm/trunk/docs/LangRef.html

Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=108064&r1=108063&r2=108064&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat Jul 10 19:08:34 2010
@@ -3564,7 +3564,7 @@
 
 <p>If the <tt>exact</tt> keyword is present, the result value of the
    <tt>sdiv</tt> is a <a href="#trapvalues">trap value</a> if the result would
-   be rounded or if overflow would occur.</p>
+   be rounded.</p>
 
 <h5>Example:</h5>
 <pre>





More information about the llvm-commits mailing list