diff options
author | Chris Lattner <sabre@nondot.org> | 2009-05-03 18:49:37 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-05-03 18:49:37 +0000 |
commit | 4d98381cb6cce82b57203fbd0f1c3bfd1819bec5 (patch) | |
tree | 18337ecc1216096a9ed05c53e17e89f0714e4b56 /docs/LangRef.html | |
parent | 97c5f1ff450a19fe244fb62a35c8e36ed590670f (diff) | |
download | external_llvm-4d98381cb6cce82b57203fbd0f1c3bfd1819bec5.zip external_llvm-4d98381cb6cce82b57203fbd0f1c3bfd1819bec5.tar.gz external_llvm-4d98381cb6cce82b57203fbd0f1c3bfd1819bec5.tar.bz2 |
be very explicit that readnone/readonly functions can't
throw exceptions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index be8ff73..1a9567a 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1066,7 +1066,8 @@ exception it throws) based strictly on its arguments, without dereferencing any pointer arguments or otherwise accessing any mutable state (e.g. memory, control registers, etc) visible to caller functions. It does not write through any pointer arguments (including <tt><a href="#byval">byval</a></tt> arguments) and -never changes any state visible to callers.</dd> +never changes any state visible to callers. readnone functions may not throw +an exception that escapes into the caller.</dd> <dt><tt><a name="readonly">readonly</a></tt></dt> <dd>This attribute indicates that the function does not write through any @@ -1075,7 +1076,8 @@ 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 -state.</dd> +state. readonly functions may not throw an exception that escapes into the +caller.</dd> <dt><tt><a name="ssp">ssp</a></tt></dt> <dd>This attribute indicates that the function should emit a stack smashing |