File: fp-conv-18.ll

package info (click to toggle)
llvm-toolchain-17 1%3A17.0.6-22
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,799,624 kB
  • sloc: cpp: 6,428,607; ansic: 1,383,196; asm: 793,408; python: 223,504; objc: 75,364; f90: 60,502; lisp: 33,869; pascal: 15,282; sh: 9,684; perl: 7,453; ml: 4,937; awk: 3,523; makefile: 2,889; javascript: 2,149; xml: 888; fortran: 619; cs: 573
file content (34 lines) | stat: -rw-r--r-- 1,039 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
; Test that VEXTEND or VROUND nodes are not emitted without vector support.
;
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=z10 | FileCheck %s

; CHECK-LABEL: fun1:
; CHECK: ldeb
; CHECK-LABEL: fun2:
; CHECK: ledbr

@.str = external dso_local unnamed_addr constant [21 x i8], align 2

define void @fun1() #0 {
bb:
%tmp = load <4 x float>, ptr undef, align 16
%tmp1 = extractelement <4 x float> %tmp, i32 0
%tmp2 = fpext float %tmp1 to double
%tmp3 = extractelement <4 x float> %tmp, i32 2
%tmp4 = fpext float %tmp3 to double
tail call void (ptr, ...) @printf(ptr @.str, double %tmp2, double undef, double %tmp4, double undef)
ret void
}

define void @fun2() #0 {
bb:
%tmp = load <2 x double>, ptr undef, align 16
%tmp1 = extractelement <2 x double> %tmp, i32 0
%tmp2 = fptrunc double %tmp1 to float
%tmp3 = extractelement <2 x double> %tmp, i32 1
%tmp4 = fptrunc double %tmp3 to float
tail call void (ptr, ...) @printf(ptr @.str, float %tmp2, float undef, float %tmp4, float undef)
ret void
}

declare dso_local void @printf(ptr, ...) #0