mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-22 10:33:23 +00:00
c5cfea3c02
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78614 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
621 B
LLVM
15 lines
621 B
LLVM
; RUN: llvm-as < %s | llc -march=arm -mattr=+vfp2 | FileCheck %s -check-prefix=VFP2
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,+neonfp | FileCheck %s -check-prefix=NEON
|
|
; RUN: llvm-as < %s | llc -march=arm -mattr=+neon,-neonfp | FileCheck %s -check-prefix=VFP2
|
|
; RUN: llvm-as < %s | llc -march=arm -mcpu=cortex-a8 | FileCheck %s -check-prefix=NEON
|
|
; RUN: llvm-as < %s | llc -march=arm -mcpu=cortex-a9 | FileCheck %s -check-prefix=VFP2
|
|
|
|
define i32 @test(float %a, float %b) {
|
|
; VFP2: ftouizs s0, s0
|
|
; NEON: vcvt.u32.f32 d0, d0
|
|
entry:
|
|
%0 = fadd float %a, %b
|
|
%1 = fptoui float %0 to i32
|
|
ret i32 %1
|
|
}
|