Displaying 3 results from an estimated 3 matches for "event_base_get_method".
2015 Jun 02
2
[LLVMdev] struct type parament
...because this type is declared more than once?
I encountered this problem when used clang to compile transmission 1.42
(http://download.transmissionbt.com/files/) with configuration:
"./configure --disable-gtk". Then in ./third-party/libevent/event.o.ll,
you can see the function "event_base_get_method" is an example.
Best,
Haopeng
On 6/2/15 1:48 PM, Mehdi Amini wrote:
> Hi,
>
> I think this is when a collision is found on the name.
> I would be interesting to have the full test, it might be that the API is used in a way such that type is constantly re-created even if it alread...
2015 Jun 02
2
[LLVMdev] struct type parament
...type is declared more than once?
>>
>> I encountered this problem when used clang to compile transmission 1.42 (http://download.transmissionbt.com/files/) with configuration: "./configure --disable-gtk". Then in ./third-party/libevent/event.o.ll, you can see the function "event_base_get_method" is an example.
>>
>> Best,
>> Haopeng
>>
>> On 6/2/15 1:48 PM, Mehdi Amini wrote:
>>> Hi,
>>>
>>> I think this is when a collision is found on the name.
>>> I would be interesting to have the full test, it might be that the API...
2015 Jun 02
2
[LLVMdev] struct type parament
Hi All,
I generated the following code with "clang -flto" command.
void test(struct StruTyName *a) {
...
}
Then the type of test function is "void (%struct.StruTyName.100*)" by
calling function::getFunctionType API.
What's the meaning of number 100?
Best,
Haopeng