Displaying 2 results from an estimated 2 matches for "enkidu".
Did you mean:
enki
2013 Oct 29
0
[LLVMdev] .align 0
".align 0" triggers the following error:
a.s:2:8: error: alignment must be a power of 2
.align 0
^
In this case would it be reasonable to query the target for a default
or minimum value? Only targets not implementing this would error out.
Thanks,
On 10/28/2013 03:00 PM, Jim Grosbach wrote:
> Apple’s assembler does use power-of-two for .align. I believe binutils
> does
2013 Oct 28
2
[LLVMdev] .align 0
Apple’s assembler does use power-of-two for .align. I believe binutils does as well. I suspect the header file comment is in error and what’s actually happening is that the section in question has a minimum alignment on the system(s) in question, and so it just looks like it’s redundant. That is, I doubt we need to do anything here.
-Jim
On Oct 28, 2013, at 11:54 AM, Renato Golin