diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2007-01-28 15:27:21 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2007-01-28 15:27:21 +0000 |
commit | e93c6e8dca070ecb0a716a2362ae7989e958a771 (patch) | |
tree | b1ae1bbd75881152bf9e95beb2a8997b71372a30 | |
parent | 15f3028ba117701fa3a62264b235588b90e2b6f0 (diff) | |
download | bcm5719-llvm-e93c6e8dca070ecb0a716a2362ae7989e958a771.tar.gz bcm5719-llvm-e93c6e8dca070ecb0a716a2362ae7989e958a771.zip |
Grammar fix
llvm-svn: 33602
-rw-r--r-- | llvm/docs/LangRef.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 4de7f3609b5..87e03da7c81 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -732,11 +732,12 @@ a power of 2.</p> a call to this function.</dd> <dt><tt>inreg</tt></dt> <dd>This indicates that the parameter should be placed in register (if - possible) during assembling function call. It's currently supported in x86 - backend only.</dd> + possible) during assembling function call. Support for this attribute is + target-specific</dd> <dt><tt>sret</tt></dt> - <dd>This indicates, that the parameter is special hidden pointer to struct - to return. Usually such parameter needs special handling during codegen.</dd> + <dd>This indicates that the parameter specifies the address of a structure + that is the return value of the function in the source program. + </dd> </dl> </div> |