Displaying 3 results from an estimated 3 matches for "assemblerdialect".
2012 Oct 02
2
[LLVMdev] [patch] set AssemblerDialect
currently, there is no (easy) way to set the AssemblerDialect. the
only method i am aware of is to set that via cl:opt.
this patch fixes that by adding a public function
setAssemblerDialect() to class MCAsmInfo.
Signed-off-by: Jun Koi <junkoi2004 at gmail.com>
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 97aad71..cd08...
2012 Oct 02
0
[LLVMdev] [patch] set AssemblerDialect
What's the use case?
On Oct 1, 2012, at 8:33 PM, Jun Koi <junkoi2004 at gmail.com> wrote:
> currently, there is no (easy) way to set the AssemblerDialect. the
> only method i am aware of is to set that via cl:opt.
>
> this patch fixes that by adding a public function
> setAssemblerDialect() to class MCAsmInfo.
>
> Signed-off-by: Jun Koi <junkoi2004 at gmail.com>
>
>
> diff --git a/include/llvm/MC/MCAsmInfo.h b/in...
2012 Oct 03
1
[LLVMdev] [patch] set AssemblerDialect
...and we
cannot change that to Intel syntax without using cl:opt.
the new public method lets us change the dialect without having cl:opt involved.
thanks,
Jun
> On Oct 1, 2012, at 8:33 PM, Jun Koi <junkoi2004 at gmail.com> wrote:
>
>> currently, there is no (easy) way to set the AssemblerDialect. the
>> only method i am aware of is to set that via cl:opt.
>>
>> this patch fixes that by adding a public function
>> setAssemblerDialect() to class MCAsmInfo.
>>
>> Signed-off-by: Jun Koi <junkoi2004 at gmail.com>
>>
>>
>> diff --git a/...