aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJoey Gouly <joey.gouly@arm.com>2013-09-13 11:51:52 +0000
committerJoey Gouly <joey.gouly@arm.com>2013-09-13 11:51:52 +0000
commit8312905790f2250d7c807b4c153be7d64ab22572 (patch)
tree644b1a8dadf7cafb374e9f0fa5ffe77101d1641d /test
parent2c9d79beee7456c1404f474cdaaa8ec56ff9a5e6 (diff)
downloadexternal_llvm-8312905790f2250d7c807b4c153be7d64ab22572.zip
external_llvm-8312905790f2250d7c807b4c153be7d64ab22572.tar.gz
external_llvm-8312905790f2250d7c807b4c153be7d64ab22572.tar.bz2
[ARMv8] Emit the proper .fpu directive.
Patch by Bradley Smith! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190683 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/ARM/2010-09-29-mc-asm-header-test.ll7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/ARM/2010-09-29-mc-asm-header-test.ll b/test/CodeGen/ARM/2010-09-29-mc-asm-header-test.ll
index e6d1518..174a641 100644
--- a/test/CodeGen/ARM/2010-09-29-mc-asm-header-test.ll
+++ b/test/CodeGen/ARM/2010-09-29-mc-asm-header-test.ll
@@ -3,6 +3,7 @@
; RUN: llc < %s -mtriple=thumbv8-linux-gnueabi | FileCheck %s --check-prefix=Vt8
; RUN: llc < %s -mtriple=armv8-linux-gnueabi -mattr=+v8fp | FileCheck %s --check-prefix=V8-V8FP
; RUN: llc < %s -mtriple=armv8-linux-gnueabi -mattr=+neon | FileCheck %s --check-prefix=V8-NEON
+; RUN: llc < %s -mtriple=armv8-linux-gnueabi -mattr=+v8fp -mattr=+neon | FileCheck %s --check-prefix=V8-V8FP-NEON
; This tests that MC/asm header conversion is smooth
;
; V7: .syntax unified
@@ -22,11 +23,17 @@
; V8-V8FP: .syntax unified
; V8-V8FP: .eabi_attribute 6, 14
; V8-V8FP: .eabi_attribute 10, 7
+; V8-V8FP: .fpu fp-armv8
; V8-NEON: .syntax unified
; V8-NEON: .eabi_attribute 6, 14
; V8-NEON: .eabi_attribute 12, 3
+; V8-V8FP-NEON: .syntax unified
+; V8-V8FP-NEON: .eabi_attribute 6, 14
+; V8-V8FP-NEON: .fpu neon-fp-armv8
+; V8-V8FP-NEON: .eabi_attribute 10, 7
+
define i32 @f(i64 %z) {
ret i32 0
}