Displaying 3 results from an estimated 3 matches for "insrtuction".
Did you mean:
insntruction
2010 Jul 16
3
[LLVMdev] help
In the insrtuction
%1 = load i32** %y_addr, align 4
what is the meaning of align 4??
Can anyone explain?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100716/ef433d43/attachment.html>
2010 Jul 16
0
[LLVMdev] help
> In the insrtuction
> %1 = load i32** %y_addr, align 4
> what is the meaning of align 4??
> Can anyone explain?
>From http://llvm.org/docs/LangRef.html#i_load :
"The optional constant align argument specifies the alignment of the
operation (that is, the alignment of the memory address). A value of 0...
2010 Jul 16
1
[LLVMdev] help
Anton Korobeynikov wrote:
>> In the insrtuction
>> %1 = load i32** %y_addr, align 4
>> what is the meaning of align 4??
>> Can anyone explain?
>>
> >From http://llvm.org/docs/LangRef.html#i_load :
>
> "The optional constant align argument specifies the alignment of the
> operation (that is, the al...