Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Thumb2 / intrinsics-cc.ll
blobd45f0969aa62a142d8bbe4c958a85e59999f5567
1 ; RUN: llc -mtriple thumbv7-unknown-none-eabi -float-abi soft -filetype asm -o - %s | FileCheck %s
2 ; RUN: llc -mtriple thumbv7-unknown-none-eabi -float-abi hard -filetype asm -o - %s | FileCheck %s
3 ; RUN: llc -mtriple thumbv7-unknown-none-eabihf -float-abi soft -filetype asm -o - %s | FileCheck %s
4 ; RUN: llc -mtriple thumbv7-unknown-none-eabihf -float-abi hard -filetype asm -o - %s | FileCheck %s
6 ; RUN: llc -mtriple thumbv7-unknown-none-gnueabi -float-abi soft -filetype asm -o - %s | FileCheck %s
7 ; RUN: llc -mtriple thumbv7-unknown-none-gnueabi -float-abi hard -filetype asm -o - %s | FileCheck %s
8 ; RUN: llc -mtriple thumbv7-unknown-none-gnueabihf -float-abi soft -filetype asm -o - %s | FileCheck %s
9 ; RUN: llc -mtriple thumbv7-unknown-none-gnueabihf -float-abi hard -filetype asm -o - %s | FileCheck %s
11 ; RUN: llc -mtriple thumbv7-unknown-none-musleabi -float-abi soft -filetype asm -o - %s | FileCheck %s
12 ; RUN: llc -mtriple thumbv7-unknown-none-musleabi -float-abi hard -filetype asm -o - %s | FileCheck %s
13 ; RUN: llc -mtriple thumbv7-unknown-none-musleabihf -float-abi soft -filetype asm -o - %s | FileCheck %s
14 ; RUN: llc -mtriple thumbv7-unknown-none-musleabihf -float-abi hard -filetype asm -o - %s | FileCheck %s
16 declare float @llvm.powi.f32.i32(float, i32)
18 define float @powi_f32(float %f, i32 %i) {
19 entry:
20   %0 = call float @llvm.powi.f32.i32(float %f, i32 %i)
21   ret float %0
24 ; CHECK: b __powisf2
26 declare double @llvm.powi.f64.i32(double, i32)
28 define double @powi_f64(double %d, i32 %i) {
29 entry:
30   %0 = call double @llvm.powi.f64.i32(double %d, i32 %i)
31   ret double %0
34 ; CHECK: b __powidf2
36 declare float @llvm.floor.f32(float)
38 define float @floor_f32(float %f) {
39 entry:
40   %0 = call float @llvm.floor.f32(float %f)
41   ret float %0
44 ; CHECK: b floorf
46 declare double @llvm.floor.f64(double)
48 define double @floor_f64(double %d) {
49 entry:
50   %0 = call double @llvm.floor.f64(double %d)
51   ret double %0
54 ; CHECK: b floor