search for: 70ea6587

Displaying 2 results from an estimated 2 matches for "70ea6587".

2018 Mar 20
0
Why is there no EmitInt64 in AsmPrinter?
...tion, but if there's a good reason not to, it would be good to know before I go to the effort of creating a review for it. Thanks for any help. James -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20180320/70ea6587/attachment-0001.html>
2018 Mar 09
2
Why is there no EmitInt64 in AsmPrinter?
Hi all, The AsmPrinter class supports functions like EmitInt8, EmitInt16, and EmitInt32 for writing a 1/2/4 byte directive to the assembly. Each of these calls the MCStreamer::EmitIntValue method with the corresponding size. For some reason, there is no EmitInt64, and I was wondering if there was a fundamental reason why? The EmitIntValue function appears to support 8-byte inputs. I dug into