Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / Generic / fpoperations.ll
blob53dd307db2492a9bdc6e064d116466e559ae6fb2
1 ; RUN: llc < %s | FileCheck %s
3 ; This test checks default lowering of the intrinsics operating floating point
4 ; values. MSP430 is used as a target in this test because it does not have
5 ; native FP support, so it won't get custom lowering for these intrinsics.
7 ; REQUIRES: msp430-registered-target
9 target datalayout = "e-p:16:16:16-i8:8:8-i16:16:16-i32:16:32-n8:16"
10 target triple = "msp430---elf"
13 define float @roundeven_01(float %x) {
14 entry:
15   %res = call float @llvm.roundeven.f32(float %x)
16   ret float %res
18 ; CHECK-LABEL: roundeven_01:
19 ; CHECK: call #roundeven
21 declare float @llvm.roundeven.f32(float %x)