Displaying 2 results from an estimated 2 matches for "uwtablealign".
Did you mean:
  suitablealign
  
2012 Nov 21
2
[LLVMdev] Python Backend
...clude <stdio.h>
> #include <stdlib.h>
> class X{
> public:
> void f();
> };
> void X::f() { printf("inside f");}
> int main() {  X x;  x.f();}
>
> translates into:
>
> [...]
>
> define  void  @_ZN1X1fEv(%class.X*nocapture  %this)nounwind  uwtablealign  2 {
>    %1 =tail  call  i32  (i8*, ...)* @printf(i8*getelementptr  inbounds ([9 xi8]* @.str,i64  0,i64  0))
>    ret  void
> }
>
> [...]
>
>
> How can I access it inside of my function Pass to get know if it was class or not?
>
>
>
> ---------------------------...
2012 Nov 21
0
[LLVMdev] Python Backend
...>
>> class X{
>> public:
>> void f();
>> };
>> void X::f() { printf("inside f");}
>> int main() {  X x;  x.f();}
>>
>> translates into:
>>
>> [...]
>>
>> define  void  @_ZN1X1fEv(%class.X*nocapture  %this)nounwind  uwtablealign
>>  2 {
>>    %1 =tail  call  i32  (i8*, ...)* @printf(i8*getelementptr  inbounds
>> ([9 xi8]* @.str,i64  0,i64  0))
>>    ret  void
>> }
>>
>> [...]
>>
>>
>> How can I access it inside of my function Pass to get know if it was
>> cl...