Displaying 3 results from an estimated 3 matches for "getassemblerdialect".
Did you mean:
setassemblerdialect
2012 Oct 02
2
[LLVMdev] [patch] set AssemblerDialect
...) 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..cd08a7e 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -453,6 +453,9 @@ namespace llvm {
unsigned getAssemblerDialect() const {
return AssemblerDialect;
}
+ void setAssemblerDialect(unsigned dialect) {
+ AssemblerDialect = dialect;
+ }
bool doesAllowQuotesInName() const {
return AllowQuotesInName;
}
2012 Oct 02
0
[LLVMdev] [patch] set AssemblerDialect
...un Koi <junkoi2004 at gmail.com>
>
>
> diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
> index 97aad71..cd08a7e 100644
> --- a/include/llvm/MC/MCAsmInfo.h
> +++ b/include/llvm/MC/MCAsmInfo.h
> @@ -453,6 +453,9 @@ namespace llvm {
> unsigned getAssemblerDialect() const {
> return AssemblerDialect;
> }
> + void setAssemblerDialect(unsigned dialect) {
> + AssemblerDialect = dialect;
> + }
> bool doesAllowQuotesInName() const {
> return AllowQuotesInName;
> }
> ____________________________________...
2012 Oct 03
1
[LLVMdev] [patch] set AssemblerDialect
....com>
>>
>>
>> diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
>> index 97aad71..cd08a7e 100644
>> --- a/include/llvm/MC/MCAsmInfo.h
>> +++ b/include/llvm/MC/MCAsmInfo.h
>> @@ -453,6 +453,9 @@ namespace llvm {
>> unsigned getAssemblerDialect() const {
>> return AssemblerDialect;
>> }
>> + void setAssemblerDialect(unsigned dialect) {
>> + AssemblerDialect = dialect;
>> + }
>> bool doesAllowQuotesInName() const {
>> return AllowQuotesInName;
>> }
>>...