search for: a354ed13

Displaying 2 results from an estimated 2 matches for "a354ed13".

Did you mean: a3546013
2010 Jan 26
0
[LLVMdev] ambiguity of .align
...://lists.cs.uiuc.edu/mailman/listinfo/llvmdev > -------------- next part -------------- A non-text attachment was scrubbed... Name: deep-llvm-comm-align.diff Type: application/octet-stream Size: 4142 bytes Desc: not available URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100126/a354ed13/attachment.obj>
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