Displaying 2 results from an estimated 2 matches for "65a38d35".
2013 Dec 04
0
[LLVMdev] Quick doubt about IR
Create a new alloca instruction, insert it into the IR right before (or after) the old one, RAUW the value, then delete the old instruction. You should be able to find a variety of examples of this sort of thing in most of the IR level optimization passes. I’d look at InstCombine in particular.
-Jim
On Dec 4, 2013, at 1:40 PM, Shivam Bhagi <shivam.bhagi at outlook.com> wrote:
> Hi,
2013 Dec 04
3
[LLVMdev] Quick doubt about IR
Hi,
While looking over the IR generated by my source code, I came across the following:
%arr = alloca [30 x i8], align 1
In the source code this particular line of code is represented by:
int arr[30];
I was wondering how I could change the capacity of arr from 30 to any other integral value via a function-pass. I know that 'alloca' can be used for reserving space on stack; further,