File: vector-cast-constant-exprs.ll

package info (click to toggle)
llvm-3.0 3.0-10
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 75,412 kB
  • sloc: cpp: 468,043; asm: 109,345; ansic: 13,782; sh: 12,935; ml: 4,716; python: 4,351; perl: 2,096; makefile: 1,905; pascal: 1,578; exp: 389; xml: 283; lisp: 187; csh: 117
file content (37 lines) | stat: -rw-r--r-- 1,179 bytes parent folder | download | duplicates (6)
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
35
36
37
; RUN: llvm-as < %s | llvm-dis | not grep {ret.*(}

; All of these constant expressions should fold.

define <2 x float> @ga() {
  ret <2 x float> fptrunc (<2 x double><double 4.3, double 3.2> to <2 x float>)
}
define <2 x double> @gb() {
  ret <2 x double> fpext (<2 x float><float 2.0, float 8.0> to <2 x double>)
}
define <2 x i64> @gd() {
  ret <2 x i64> zext (<2 x i32><i32 3, i32 4> to <2 x i64>)
}
define <2 x i64> @ge() {
  ret <2 x i64> sext (<2 x i32><i32 3, i32 4> to <2 x i64>)
}
define <2 x i32> @gf() {
  ret <2 x i32> trunc (<2 x i64><i64 3, i64 4> to <2 x i32>)
}
define <2 x i32> @gh() {
  ret <2 x i32> fptoui (<2 x float><float 8.0, float 7.0> to <2 x i32>)
}
define <2 x i32> @gi() {
  ret <2 x i32> fptosi (<2 x float><float 8.0, float 7.0> to <2 x i32>)
}
define <2 x float> @gj() {
  ret <2 x float> uitofp (<2 x i32><i32 8, i32 7> to <2 x float>)
}
define <2 x float> @gk() {
  ret <2 x float> sitofp (<2 x i32><i32 8, i32 7> to <2 x float>)
}
define <2 x double> @gl() {
  ret <2 x double> bitcast (<2 x double><double 4.0, double 3.0> to <2 x double>)
}
define <2 x double> @gm() {
  ret <2 x double> bitcast (<2 x i64><i64 4, i64 3> to <2 x double>)
}