Displaying 4 results from an estimated 4 matches for "locmdnode".
Did you mean:
locknode
2014 Jan 29
6
[LLVMdev] making emitInlineAsm protected
I would like to make the following member of AsmPrinter be protected
void EmitInlineAsm(StringRef Str, const MDNode *LocMDNode = 0,
InlineAsm::AsmDialect AsmDialect =
InlineAsm::AD_ATT) const;
I have some stubs that I want to emit in MipsAsmParser .
Are there any objections to doing this?
Reed
2014 Jan 29
3
[LLVMdev] making emitInlineAsm protected
...M, Eric Christopher wrote:
> Uhhhh...
>
> -eric
>
> On Tue, Jan 28, 2014 at 4:56 PM, reed kotler <rkotler at mips.com> wrote:
>> I would like to make the following member of AsmPrinter be protected
>>
>>
>> void EmitInlineAsm(StringRef Str, const MDNode *LocMDNode = 0,
>> InlineAsm::AsmDialect AsmDialect =
>> InlineAsm::AD_ATT) const;
>>
>> I have some stubs that I want to emit in MipsAsmParser .
>>
>> Are there any objections to doing this?
>>
>> Reed
>>...
2014 Jan 31
4
[LLVMdev] making emitInlineAsm protected
...> Subject: Re: [LLVMdev] making emitInlineAsm protected
>
> On 28 January 2014 19:56, reed kotler <rkotler at mips.com> wrote:
> > I would like to make the following member of AsmPrinter be protected
> >
> >
> > void EmitInlineAsm(StringRef Str, const MDNode *LocMDNode = 0,
> > InlineAsm::AsmDialect AsmDialect =
> > InlineAsm::AD_ATT) const;
> >
> > I have some stubs that I want to emit in MipsAsmParser .
>
> You mean Printer? There is no such a thing as inline asm in a .s file.
>...
2014 Jan 29
6
[LLVMdev] making emitInlineAsm protected
On 01/29/2014 12:14 PM, Rafael EspĂndola wrote:
> On 28 January 2014 19:56, reed kotler <rkotler at mips.com> wrote:
>> I would like to make the following member of AsmPrinter be protected
>>
>>
>> void EmitInlineAsm(StringRef Str, const MDNode *LocMDNode = 0,
>> InlineAsm::AsmDialect AsmDialect =
>> InlineAsm::AD_ATT) const;
>>
>> I have some stubs that I want to emit in MipsAsmParser .
> You mean Printer? There is no such a thing as inline asm in a .s file.
>
>>...