Displaying 2 results from an estimated 2 matches for "_46".
Did you mean:
46
2009 Sep 06
3
[LLVMdev] Equivalent types
...ilder.
I found that function parameter type is %struct.reValue* and
the type of the value that I'm passing to the function is {i32,i64}*
But these types are quite equivalent, because of the definition:
%struct.reValue = type { %"struct.reValue::$_44",
%"struct.reValue::$_46" }
%"struct.reValue::$_44" = type { i32 }
%"struct.reValue::$_46" = type { i64 }
What is the easiest way to solve this problem?
Thanks,
Andrii
2009 Sep 06
0
[LLVMdev] Equivalent types
...nction parameter type is %struct.reValue* and
> the type of the value that I'm passing to the function is {i32,i64}*
>
> But these types are quite equivalent, because of the definition:
> %struct.reValue = type { %"struct.reValue::$_44",
> %"struct.reValue::$_46" }
> %"struct.reValue::$_44" = type { i32 }
> %"struct.reValue::$_46" = type { i64 }
>
> What is the easiest way to solve this problem?
>
> Thanks,
> Andrii
> _______________________________________________
> LLVM Developers mailing...