summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-05-03 19:06:00 +0000
committerChris Lattner <sabre@nondot.org>2009-05-03 19:06:00 +0000
commitbdd73290a5d11abc12f3486fd4da05f88234f99b (patch)
tree7586a27555db15f715471f369b25d51505b4e9b5 /docs
parent7a57c5bb080e7046e78380cde36f648e888912d7 (diff)
downloadllvm-bdd73290a5d11abc12f3486fd4da05f88234f99b.tar.gz
llvm-bdd73290a5d11abc12f3486fd4da05f88234f99b.tar.bz2
llvm-bdd73290a5d11abc12f3486fd4da05f88234f99b.tar.xz
Remove obsolete wording, the only exception a readnone function can throw
is the empty set. :) Thanks to Fritz for pointing this out. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70790 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 1a9567a2b3..f07fc31083 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -1074,8 +1074,8 @@ an exception that escapes into the caller.</dd>
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>