search for: 4aac86a3

Displaying 3 results from an estimated 3 matches for "4aac86a3".

2010 Jan 26
2
[LLVMdev] ambiguity of .align
...hris, do you think it is OK? > deep Cheers, -- Rafael Ávila de Espíndola -------------- next part -------------- A non-text attachment was scrubbed... Name: comm.patch Type: text/x-diff Size: 4706 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100126/4aac86a3/attachment.patch>
2010 Jan 26
0
[LLVMdev] ambiguity of .align
Assuming you're working with an ARM target, you may also hit a problem with the alignment option on the .comm directive. Attached is a first-cut patch for this latter problem. deep On Mon, Jan 25, 2010 at 5:42 PM, Edmund Grimley Evans <Edmund.Grimley-Evans at arm.com> wrote: > I just got this error message from the GNU assembler: > > Error: alignment too large: 15 assumed
2010 Jan 25
5
[LLVMdev] ambiguity of .align
I just got this error message from the GNU assembler: Error: alignment too large: 15 assumed Which made me laugh at first. The corresponding input line was: .align 16 Apparently what's going on here is that ".align 16" is ambiguous: on some architectures it means ".balign 16", and on some it means ".p2align 16", which would mean ".balign 65536" if