Displaying 3 results from an estimated 3 matches for "bba2d4bb".
2012 Mar 05
0
[LLVMdev] [patch] Enhance of asm macros
> For compability this problems requiring some compiler switch flag. Can you
> give me description/example how it's can be done?
grep for DwarfRequiresRelocationForSectionOffset. Something like that
might do what you want.
Cheers,
Rafael
2012 Mar 19
1
[LLVMdev] [patch] Enhance of asm macros
...atform applied old mechanism
2) patch added processing .rept directive
3) patch added processing .irp directive
4) patch added processing .irpc directive
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120319/bba2d4bb/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 1.macro-enh.patch
Type: text/x-patch
Size: 27673 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120319/bba2d4bb/attachment.bin>
-------------- next p...
2012 Feb 15
2
[LLVMdev] [patch] Enhance of asm macros
Hello Kevin,
I thinking about this, but there are some problems:
1) Differrent interpretation of $[:number:] in macro body:
source:
.macro test par1
movl $0, %eax
.endm
test %ebx
translated to:
original llvm => movl %ebx, %eax
with patch => movl $0, %ebx
2) Different parsing of space in macro parameters:
source:
test2 a + b,c
parsed as:
original llvm => macro test2 with two