Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / PowerPC / vector-rounding-ops.ll
blob52ccb2426d419ef8764a4f4ad53fd1844fdbf13e
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mcpu=pwr9 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr \
3 ; RUN:   -mtriple=powerpc64le-unknown-unknown -verify-machineinstrs < %s | \
4 ; RUN:   FileCheck %s --check-prefix=P9
5 ; RUN: llc -mcpu=pwr8 -ppc-asm-full-reg-names -ppc-vsr-nums-as-vr \
6 ; RUN:   -mtriple=powerpc64le-unknown-unknown -verify-machineinstrs < %s | \
7 ; RUN:   FileCheck %s
9 define dso_local <2 x double> @test_rint_v2f64(<2 x double> %d) local_unnamed_addr {
10 ; P9-LABEL: test_rint_v2f64:
11 ; P9:       # %bb.0: # %entry
12 ; P9-NEXT:    xvrdpic v2, v2
13 ; P9-NEXT:    blr
15 ; CHECK-LABEL: test_rint_v2f64:
16 ; CHECK:       # %bb.0: # %entry
17 ; CHECK-NEXT:    xvrdpic v2, v2
18 ; CHECK-NEXT:    blr
19 entry:
20   %0 = tail call <2 x double> @llvm.rint.v2f64(<2 x double> %d)
21   ret <2 x double> %0
24 declare <2 x double> @llvm.rint.v2f64(<2 x double>)
27 define dso_local <4 x float> @test_rint_v4f32(<4 x float> %d) local_unnamed_addr {
28 ; P9-LABEL: test_rint_v4f32:
29 ; P9:       # %bb.0: # %entry
30 ; P9-NEXT:    xvrspic v2, v2
31 ; P9-NEXT:    blr
33 ; CHECK-LABEL: test_rint_v4f32:
34 ; CHECK:       # %bb.0: # %entry
35 ; CHECK-NEXT:    xvrspic v2, v2
36 ; CHECK-NEXT:    blr
37 entry:
38   %0 = tail call <4 x float> @llvm.rint.v4f32(<4 x float> %d)
39   ret <4 x float> %0
42 declare <4 x float> @llvm.rint.v4f32(<4 x float>)