diff options
author | Mike Pall <mike> | 2012-11-07 18:09:37 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2012-11-07 18:09:37 +0100 |
commit | 07406a5af9d23ffd408dc860b002df6ec292c8e1 (patch) | |
tree | 046d588cf6431267d3c7dacb68a45c909b65d582 /doc | |
parent | 061335899194145ca28f01eb499a1f7472c38fe8 (diff) | |
download | luajit-07406a5af9d23ffd408dc860b002df6ec292c8e1.tar.gz luajit-07406a5af9d23ffd408dc860b002df6ec292c8e1.tar.bz2 luajit-07406a5af9d23ffd408dc860b002df6ec292c8e1.zip |
FFI: Mention __thiscall attribute in docs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ext_ffi_semantics.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html index ab02f2b8..c2107663 100644 --- a/doc/ext_ffi_semantics.html +++ b/doc/ext_ffi_semantics.html | |||
@@ -148,7 +148,7 @@ VLA).</li> | |||
148 | <li>GCC <tt>__attribute__</tt> with the following attributes: | 148 | <li>GCC <tt>__attribute__</tt> with the following attributes: |
149 | <tt>aligned</tt>, <tt>packed</tt>, <tt>mode</tt>, | 149 | <tt>aligned</tt>, <tt>packed</tt>, <tt>mode</tt>, |
150 | <tt>vector_size</tt>, <tt>cdecl</tt>, <tt>fastcall</tt>, | 150 | <tt>vector_size</tt>, <tt>cdecl</tt>, <tt>fastcall</tt>, |
151 | <tt>stdcall</tt>.</li> | 151 | <tt>stdcall</tt>, <tt>thiscall</tt>.</li> |
152 | 152 | ||
153 | <li>The GCC <tt>__extension__</tt> keyword and the GCC | 153 | <li>The GCC <tt>__extension__</tt> keyword and the GCC |
154 | <tt>__alignof__</tt> operator.</li> | 154 | <tt>__alignof__</tt> operator.</li> |
@@ -160,8 +160,8 @@ function declarations.</li> | |||
160 | <tt>__int16</tt>, <tt>__int32</tt> and <tt>__int64</tt>.</li> | 160 | <tt>__int16</tt>, <tt>__int32</tt> and <tt>__int64</tt>.</li> |
161 | 161 | ||
162 | <li>MSVC <tt>__cdecl</tt>, <tt>__fastcall</tt>, <tt>__stdcall</tt>, | 162 | <li>MSVC <tt>__cdecl</tt>, <tt>__fastcall</tt>, <tt>__stdcall</tt>, |
163 | <tt>__ptr32</tt>, <tt>__ptr64</tt>, <tt>__declspec(align(n))</tt> | 163 | <tt>__thiscall</tt>, <tt>__ptr32</tt>, <tt>__ptr64</tt>, |
164 | and <tt>#pragma pack</tt>.</li> | 164 | <tt>__declspec(align(n))</tt> and <tt>#pragma pack</tt>.</li> |
165 | 165 | ||
166 | <li>All other GCC/MSVC-specific attributes are ignored.</li> | 166 | <li>All other GCC/MSVC-specific attributes are ignored.</li> |
167 | 167 | ||