summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARM.td
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2010-12-15 22:14:12 +0000
committerBob Wilson <bob.wilson@apple.com>2010-12-15 22:14:12 +0000
commit0406356cd4cb7b689e2472faa8dfb7d721f9d274 (patch)
tree0c1e2f26438acad7f4053004cd38fe2d9282c52d /lib/Target/ARM/ARM.td
parent8d1b7e57e56015576fd489a57d74c53b98c5a56f (diff)
downloadllvm-0406356cd4cb7b689e2472faa8dfb7d721f9d274.tar.gz
llvm-0406356cd4cb7b689e2472faa8dfb7d721f9d274.tar.bz2
llvm-0406356cd4cb7b689e2472faa8dfb7d721f9d274.tar.xz
Add Neon VCVT instructions for f32 <-> f16 conversions.
Clang is now providing intrinsics for these and so we need to support them in the backend. Radar 8068427. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@121902 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARM.td')
-rw-r--r--lib/Target/ARM/ARM.td3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARM.td b/lib/Target/ARM/ARM.td
index 5b4371611d..bf4315fc6c 100644
--- a/lib/Target/ARM/ARM.td
+++ b/lib/Target/ARM/ARM.td
@@ -103,7 +103,8 @@ def ProcA8 : SubtargetFeature<"a8", "ARMProcFamily", "CortexA8",
FeatureHasSlowFPVMLx, FeatureT2XtPk]>;
def ProcA9 : SubtargetFeature<"a9", "ARMProcFamily", "CortexA9",
"Cortex-A9 ARM processors",
- [FeatureHasSlowFPVMLx, FeatureT2XtPk]>;
+ [FeatureHasSlowFPVMLx, FeatureT2XtPk,
+ FeatureFP16]>;
class ProcNoItin<string Name, list<SubtargetFeature> Features>
: Processor<Name, GenericItineraries, Features>;