reed kotler
2014-Feb-04 17:57 UTC
[LLVMdev] emitting function stub for mips16 floating point patch
On 02/04/2014 09:55 AM, Rafael Espíndola wrote:>> Not on a symbol but in a section to set the current value. > If I remember correctly a section is as aligned as its most aligned > symbol. What directive does gcc use? > > Cheers, > Rafael.align
Rafael Espíndola
2014-Feb-04 17:58 UTC
[LLVMdev] emitting function stub for mips16 floating point patch
> .alignSo yes, EmitValueToAlignment. Cheers, Rafael
Reed Kotler
2014-Feb-04 21:05 UTC
[LLVMdev] emitting function stub for mips16 floating point patch
On 02/04/2014 09:58 AM, Rafael Espíndola wrote:>> .align > > So yes, EmitValueToAlignment. > > Cheers, > Rafael >One more::: OutStreamer.EmitRawText("\t.size __call_stub_fp_" + Twine(Symbol) + ", .-__call_stub_fp_" + Twine(Symbol)); You have to make an expression???? i.e. .size __call_stub_fp___floatdidf, .-__call_stub_fp___floatdidf TIA. Reed