diff options
author | Mike Pall <mike> | 2017-05-01 00:00:33 +0200 |
---|---|---|
committer | Mike Pall <mike> | 2017-05-01 00:00:33 +0200 |
commit | b608891d7b2d4754932176a2e32208c8f5663337 (patch) | |
tree | e39c5c8a57d87f762dbb82ce411bcda6c4b9ebd0 | |
parent | cf8a5bea89984024a8607874e9db990c92e982dc (diff) | |
download | luajit-b608891d7b2d4754932176a2e32208c8f5663337.tar.gz luajit-b608891d7b2d4754932176a2e32208c8f5663337.tar.bz2 luajit-b608891d7b2d4754932176a2e32208c8f5663337.zip |
FFI: Update docs on compiler limitations.
-rw-r--r-- | doc/ext_ffi_semantics.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/doc/ext_ffi_semantics.html b/doc/ext_ffi_semantics.html index bba03b7b..800b6b18 100644 --- a/doc/ext_ffi_semantics.html +++ b/doc/ext_ffi_semantics.html | |||
@@ -1221,13 +1221,12 @@ The following operations are currently not compiled and may exhibit | |||
1221 | suboptimal performance, especially when used in inner loops: | 1221 | suboptimal performance, especially when used in inner loops: |
1222 | </p> | 1222 | </p> |
1223 | <ul> | 1223 | <ul> |
1224 | <li>Bitfield accesses and initializations.</li> | ||
1225 | <li>Vector operations.</li> | 1224 | <li>Vector operations.</li> |
1226 | <li>Table initializers.</li> | 1225 | <li>Table initializers.</li> |
1227 | <li>Initialization of nested <tt>struct</tt>/<tt>union</tt> types.</li> | 1226 | <li>Initialization of nested <tt>struct</tt>/<tt>union</tt> types.</li> |
1228 | <li>Non-default initialization of VLA/VLS or large C types | 1227 | <li>Non-default initialization of VLA/VLS or large C types |
1229 | (> 128 bytes or > 16 array elements.</li> | 1228 | (> 128 bytes or > 16 array elements.</li> |
1230 | <li>Conversions from lightuserdata to <tt>void *</tt>.</li> | 1229 | <li>Bitfield initializations.</li> |
1231 | <li>Pointer differences for element sizes that are not a power of | 1230 | <li>Pointer differences for element sizes that are not a power of |
1232 | two.</li> | 1231 | two.</li> |
1233 | <li>Calls to C functions with aggregates passed or returned by | 1232 | <li>Calls to C functions with aggregates passed or returned by |