How can I ensure use of VFP3 via LLVM target options? I am currently using thumbv7-windows-msvc as the target triple and default set of llvm::TargetOptions. Thanks, Daman -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140623/bdf36cce/attachment.html>
Hi Damanjit, I assume you're trying to use the tools like llvm-mc, in which case you can use the -mattr=+vfpv3 flag to enable it. This applies to other subtarget features defined in ARM.td as well. Cheers, Amara On 23 June 2014 11:27, Damanjit Singh <dsingh at adobe.com> wrote:> How can I ensure use of VFP3 via LLVM target options? I am currently using > thumbv7-windows-msvc as the target triple and default set of > llvm::TargetOptions. > > Thanks, > Daman > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
I am not using llvm tools, but sources and directly calling into relevant LLVM classes and methods. Thanks, Daman On 23/06/14 4:11 pm, "Amara Emerson" <amara.emerson at gmail.com> wrote:>Hi Damanjit, > >I assume you're trying to use the tools like llvm-mc, in which case >you can use the -mattr=+vfpv3 flag to enable it. This applies to other >subtarget features defined in ARM.td as well. > >Cheers, >Amara > >On 23 June 2014 11:27, Damanjit Singh <dsingh at adobe.com> wrote: >> How can I ensure use of VFP3 via LLVM target options? I am currently >>using >> thumbv7-windows-msvc as the target triple and default set of >> llvm::TargetOptions. >> >> Thanks, >> Daman >> >> _______________________________________________ >> LLVM Developers mailing list >> LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu >> http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >>