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

Chris Lattner sabre at nondot.org
Sun May 3 12:06:00 PDT 2009


Author: lattner
Date: Sun May  3 14:06:00 2009
New Revision: 70790

URL: http://llvm.org/viewvc/llvm-project?rev=70790&view=rev
Log:
Remove obsolete wording, the only exception a readnone function can throw
is the empty set. :)  Thanks to Fritz 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=70790&r1=70789&r2=70790&view=diff

==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sun May  3 14:06:00 2009
@@ -1074,8 +1074,8 @@
 pointer arguments (including <tt><a href="#byval">byval</a></tt> arguments)
 or otherwise modify any state (e.g. memory, control registers, etc) visible to
 caller functions.  It may dereference pointer arguments and read state that may
-be set in the caller.  A readonly function always returns the same value (or
-throws the same exception) when called with the same set of arguments and global
+be set in the caller.  A readonly function always returns the same value when
+called with the same set of arguments and global
 state.  readonly functions may not throw an exception that escapes into the
 caller.</dd>
 





More information about the llvm-commits mailing list