mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
263dd533ee
Some of the the permissible ARM -mfpu options, which are supported in GCC, are currently not present in llvm/clang.This patch adds the options: 'neon-fp16', 'vfpv3-fp16', 'vfpv3-d16-fp16', 'vfpv3xd' and 'vfpv3xd-fp16. These are related to half-precision floating-point and single precision. Reviewers: rengolin, ranjeet.singh Subscribers: llvm-commits Differential Revision: http://reviews.llvm.org/D10645 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240930 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
821 B
ArmAsm
40 lines
821 B
ArmAsm
@ Check multiple .fpu directives.
|
|
|
|
@ The later .fpu directive should overwrite the earlier one.
|
|
@ We also check here that all the .fpu directives that we expect to work do work
|
|
|
|
@ RUN: llvm-mc -triple arm-eabi -filetype obj %s | llvm-readobj -arm-attributes \
|
|
@ RUN: | FileCheck %s -check-prefix CHECK-ATTR
|
|
|
|
.fpu none
|
|
.fpu vfp
|
|
.fpu vfpv2
|
|
.fpu vfpv3
|
|
.fpu vfpv3-fp16
|
|
.fpu vfpv3-d16
|
|
.fpu vfpv3-d16-fp16
|
|
.fpu vfpv3xd
|
|
.fpu vfpv3xd-fp16
|
|
.fpu vfpv4
|
|
.fpu vfpv4-d16
|
|
.fpu fpv4-sp-d16
|
|
.fpu fpv5-d16
|
|
.fpu fpv5-sp-d16
|
|
.fpu fp-armv8
|
|
.fpu neon
|
|
.fpu neon-fp16
|
|
.fpu neon-vfpv4
|
|
.fpu neon-fp-armv8
|
|
.fpu crypto-neon-fp-armv8
|
|
.fpu softvfp
|
|
|
|
.fpu vfpv4
|
|
|
|
@ CHECK-ATTR: FileAttributes {
|
|
@ CHECK-ATTR: Attribute {
|
|
@ CHECK-ATTR: TagName: FP_arch
|
|
@ CHECK-ATTR: Description: VFPv4
|
|
@ CHECK-ATTR: }
|
|
@ CHECK-ATTR: }
|
|
|