Displaying 2 results from an estimated 2 matches for "123400002".
Did you mean:
123400001
2016 Jan 19
8
[RFC] A proposal for byval in a world with opaque pointers
.... Find all byval arguments in tests that are missing dereferenceable, e.g.
... i32* byval align 4 ...
.... {i8, i64}* byval ...
2. Add a bogus dereferenceable(unique ID) to each of them, i.e.
... i32* byval dereferenceable(123400001) align 4 ...
.... {i8, i16}* byval dereferenceable(123400002) ...
3. Run the tests and record the errors, which may look like:
Attribute 'byval' expects 'dereferenceable(4)' for type i32*,
found 'dereferenceable(123400001)'
Attribute 'byval' expects 'dereferenceable(16) align 8' for type {i8, i64}*,
found ...
2016 Jan 19
2
[RFC] A proposal for byval in a world with opaque pointers
...ereferenceable,
>> e.g.
>> ... i32* byval align 4 ...
>> .... {i8, i64}* byval ...
>> 2. Add a bogus dereferenceable(unique ID) to each of them, i.e.
>> ... i32* byval dereferenceable(123400001) align 4 ...
>> .... {i8, i16}* byval dereferenceable(123400002) ...
>> 3. Run the tests and record the errors, which may look like:
>>
>> Attribute 'byval' expects 'dereferenceable(4)' for type i32*,
>> found 'dereferenceable(123400001)'
>>
>> Attribute 'byval' expects 'dereferenceable...