summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/ARM/vfp-libcalls.ll
Commit message (Collapse)AuthorAgeFilesLines
* ARM: stop emitting blx instructions for most calls on MachO.Tim Northover2016-05-101-1/+1
| | | | | | | | | | | I'm really not sure why we were in the first place, it's the linker's job to convert between BL/BLX as necessary. Even worse, using BLX left Thumb calls that could be locally resolved completely unencodable since all offsets to BLX are multiples of 4. rdar://26182344 llvm-svn: 269101
* Migrate existing backends that care about software floating pointEric Christopher2015-05-121-2/+2
| | | | | | | | | | | | | | | | | | | | to use the information in the module rather than TargetOptions. We've had and clang has used the use-soft-float attribute for some time now so have the backends set a subtarget feature based on a particular function now that subtargets are created based on functions and function attributes. For the one middle end soft float check go ahead and create an overloadable TargetLowering::useSoftFloat function that just checks the TargetSubtargetInfo in all cases. Also remove the command line option that hard codes whether or not soft-float is set by using the attribute for all of the target specific test cases - for the generic just go ahead and add the attribute in the one case that showed up. llvm-svn: 237079
* ARM: disable emission of __XYZvfp in soft-float environment.Tim Northover2014-04-221-0/+11
The point of these calls is to allow Thumb-1 code to make use of the VFP unit to perform its operations. This is not desirable with -msoft-float, since most of the reasons you'd want that apply equally to the runtime library. rdar://problem/13766161 llvm-svn: 206874
OpenPOWER on IntegriCloud