diff options
| author | Cameron Zwarich <zwarich@apple.com> | 2011-03-17 14:21:58 +0000 |
|---|---|---|
| committer | Cameron Zwarich <zwarich@apple.com> | 2011-03-17 14:21:58 +0000 |
| commit | 341c36dc8b9a43df1bc329dbe2fcb85e3e346b9e (patch) | |
| tree | 7ee4ac61d149a49f40cdbf4ae4802fde793dbf78 /llvm/docs | |
| parent | 34e7b3f77e47e239804240f24386ca95bf4b0745 (diff) | |
| download | bcm5719-llvm-341c36dc8b9a43df1bc329dbe2fcb85e3e346b9e.tar.gz bcm5719-llvm-341c36dc8b9a43df1bc329dbe2fcb85e3e346b9e.zip | |
Change the signext language in LangRef to closer match zeroext.
llvm-svn: 127808
Diffstat (limited to 'llvm/docs')
| -rw-r--r-- | llvm/docs/LangRef.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index ab9f1caae69..15ecf86d4f8 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -1023,8 +1023,9 @@ declare signext i8 @returns_signed_char() <dt><tt><b>signext</b></tt></dt> <dd>This indicates to the code generator that the parameter or return value - should be sign-extended to a 32-bit value by the caller (for a parameter) - or the callee (for a return value).</dd> + should be sign-extended to the extent required by the target's ABI (which + is usually 32-bits) by the caller (for a parameter) or the callee (for a + return value).</dd> <dt><tt><b>inreg</b></tt></dt> <dd>This indicates that this parameter or return value should be treated in a |

