From ce459b1e28713dd85632388598eb6a29255811cd Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 5 Feb 2009 05:42:28 +0000 Subject: [PATCH] PR3485, document alignment on byref. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@63836 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 88970f971ec..afadd2169e8 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -922,7 +922,10 @@ declare signext i8 @returns_signed_char() belong to the caller not the callee (for example, readonly functions should not write to byval parameters). This is not a valid attribute for return - values. + values. The byval attribute also supports specifying an alignment with the + align attribute. This has a target-specific effect on the code generator + that usually indicates a desired alignment for the synthesized stack + slot.
sret
This indicates that the pointer parameter specifies the address of a -- 2.34.1