From 66a8c8ccb8511900a957784e51517bb3b905c085 Mon Sep 17 00:00:00 2001
From: Anton Korobeynikov
Date: Sun, 28 Jan 2007 15:27:21 +0000
Subject: [PATCH] Grammar fix
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33602 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/LangRef.html | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 4de7f3609b5..87e03da7c81 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -732,11 +732,12 @@ a power of 2.
a call to this function.
inreg
This indicates that the parameter should be placed in register (if
- possible) during assembling function call. It's currently supported in x86
- backend only.
+ possible) during assembling function call. Support for this attribute is
+ target-specific
sret
- This indicates, that the parameter is special hidden pointer to struct
- to return. Usually such parameter needs special handling during codegen.
+ This indicates that the parameter specifies the address of a structure
+ that is the return value of the function in the source program.
+