Displaying 3 results from an estimated 3 matches for "abhd".
Did you mean:
abcd
2013 Mar 07
1
[LLVMdev] Function permutation at IR bytecode level
...rresponding
IR bytecode.
void findLen(char a[10])
{
int tmp = strlen(a);
printf("Len is : %d\n", tmp);
}
void muladd(int a, int b, int c)
{
int tmp = a + b;
int tmp1 = tmp * c;
printf("Addition is : %d Multiplication is : %d\n", tmp, tmp1);
char d[10] = "abhd";
findLen(d);
}
void main()
{
int x = 8, y = 5, z = 3;
muladd(x, y, z);
}
In its corresponding .s [IR bytecode] file function sequence will be same
first findLen() then muladd() and then main().
Suppose I want to change this sequence i.e. swap findLen() and muladd()
function's po...
2013 Feb 25
0
[LLVMdev] Queries regarding function's arguments data type
On 2/25/13 1:44 PM, teja tamboli wrote:
> Hi all,
>
> I am working on my Master's project in security and I am trying to
> iterate over the argument list of the function. Basically I need to do
> following things :
Interesting. Just out of curiosity, can you tell us what your project
is about?
>
> 1. Check data type of each argument of the argument list of the
2013 Feb 25
2
[LLVMdev] Queries regarding function's arguments data type
Hi all,
I am working on my Master's project in security and I am trying to iterate
over the argument list of the function. Basically I need to do following
things :
1. Check data type of each argument of the argument list of the function.
2. Based on its data type like character array or integer array, pointer,
int, char, take different action.
3. I have added following code to check its