From b38edd37147a0e244d8c2b6c508a2d5412ebe000 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 3 May 2009 19:06:00 +0000 Subject: [PATCH] Remove obsolete wording, the only exception a readnone function can throw is the empty set. :) Thanks to Fritz for pointing this out. llvm-svn: 70790 --- docs/LangRef.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 1a9567a2b39..f07fc31083e 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1074,8 +1074,8 @@ an exception that escapes into the caller. pointer arguments (including byval 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.