diff options
| author | Javed Absar <javed.absar@arm.com> | 2015-06-26 17:42:37 +0000 |
|---|---|---|
| committer | Javed Absar <javed.absar@arm.com> | 2015-06-26 17:42:37 +0000 |
| commit | bced3032e02b95433b9ab576f030f20a687657cd (patch) | |
| tree | ffbbbe7430b6966010c652ae3a4be846db168c23 /llvm/lib | |
| parent | c4866d29dd74336d4a7d09fd7b2ee730214d4dad (diff) | |
| download | bcm5719-llvm-bced3032e02b95433b9ab576f030f20a687657cd.tar.gz bcm5719-llvm-bced3032e02b95433b9ab576f030f20a687657cd.zip | |
[ARM] Cortex-R5 is not VFPOnlySP
This patch fixes the error in ARM.td which stated that Cortex-R5
floating point unit can do only single precision, when it can do double as well.
Reviewers: rengolin
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D10769
llvm-svn: 240799
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/ARM/ARM.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARM.td b/llvm/lib/Target/ARM/ARM.td index ff12b36a0ea..96b4742da2b 100644 --- a/llvm/lib/Target/ARM/ARM.td +++ b/llvm/lib/Target/ARM/ARM.td @@ -416,7 +416,7 @@ def : ProcessorModel<"cortex-r4f", CortexA8Model, def : ProcessorModel<"cortex-r5", CortexA8Model, [ProcR5, HasV7Ops, FeatureDB, FeatureVFP3, FeatureDSPThumb2, - FeatureHasRAS, FeatureVFPOnlySP, + FeatureHasRAS, FeatureD16, FeatureRClass]>; // FIXME: R7 has currently the same ProcessorModel as A8 and is modelled as R5. |

