Displaying 3 results from an estimated 3 matches for "structtyname".
Did you mean:
structname
2015 Jun 02
2
[LLVMdev] struct type parament
Hi Mehdi,
Thanks for your reply.
It seems caused by random rename because I saw
%struct.StructTyName.692.475*, which might be twice renaming.
Does this collision occur 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...
2015 Jun 02
2
[LLVMdev] struct type parament
...way? Does the compilation fails in some way?
>
> —
> Mehdi
>
>> On Jun 2, 2015, at 1:31 PM, Haopeng Liu <hyliuhp at gmail.com> wrote:
>>
>> Hi Mehdi,
>>
>> Thanks for your reply.
>>
>> It seems caused by random rename because I saw %struct.StructTyName.692.475*, which might be twice renaming.
>>
>> Does this collision occur 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: "./config...
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