diff options
author | Owen Anderson <resistor@mac.com> | 2008-02-18 04:09:01 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2008-02-18 04:09:01 +0000 |
commit | c4fc4cd925498b78ab0dda94aed7af6c61eb2907 (patch) | |
tree | 5e81e8c5ff49baae469075eeeea3182c5c8a448e /docs | |
parent | 93df1d34184755034a22ef11d2255223a9ea8725 (diff) | |
download | external_llvm-c4fc4cd925498b78ab0dda94aed7af6c61eb2907.zip external_llvm-c4fc4cd925498b78ab0dda94aed7af6c61eb2907.tar.gz external_llvm-c4fc4cd925498b78ab0dda94aed7af6c61eb2907.tar.bz2 |
Make the definition of the noalias attribute clearer.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47255 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 6267cf8..515f956 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -827,8 +827,9 @@ declare i32 @atoi(i8*) nounwind readonly that is the return value of the function in the source program.</dd> <dt><tt>noalias</tt></dt> - <dd>This indicates that the parameter not alias any other object or any - other "noalias" objects during the function call. + <dd>This indicates that the parameter does not alias any global or any other + parameter. The caller is responsible for ensuring that this is the case, + usually by placing the value in a stack allocation.</dd> <dt><tt>noreturn</tt></dt> <dd>This function attribute indicates that the function never returns. This |