File: vect-illegal-type.ll

package info (click to toggle)
llvm-toolchain-3.9 1%3A3.9.1-8
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 441,060 kB
  • ctags: 428,777
  • sloc: cpp: 2,546,577; ansic: 538,318; asm: 119,677; objc: 103,316; python: 102,148; sh: 27,847; pascal: 5,626; ml: 5,510; perl: 5,293; lisp: 4,801; makefile: 2,177; xml: 686; cs: 362; php: 212; csh: 117
file content (50 lines) | stat: -rw-r--r-- 1,913 bytes parent folder | download | duplicates (20)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
; RUN: llc -march=hexagon < %s
; REQUIRES: asserts
; Used to fail with "Unexpected illegal type!"
; Used to fail with "Cannot select: ch = store x,x,x,<ST4[undef](align=8), trunc to v4i8>"

; ModuleID = 'bugpoint-reduced-simplified.bc'
target datalayout = "e-p:32:32:32-i64:64:64-i32:32:32-i16:16:16-i1:32:32-f64:64:64-f32:32:32-a0:0-n32"
target triple = "hexagon-unknown-linux-gnu"

define void @foo() nounwind {
entry:
  br label %for.body

for.body:                                         ; preds = %for.body, %entry
  br i1 undef, label %for.end, label %for.body

for.end:                                          ; preds = %for.body
  br label %for.body71

for.body71:                                       ; preds = %for.body71, %for.end
  br i1 undef, label %for.end96, label %for.body71

for.end96:                                        ; preds = %for.body71
  switch i32 undef, label %sw.epilog [
    i32 1, label %for.cond375.preheader
    i32 8, label %for.cond591
  ]

for.cond375.preheader:                            ; preds = %for.end96
  br label %polly.loop_header228

for.cond591:                                      ; preds = %for.end96
  br label %for.body664

for.body664:                                      ; preds = %for.body664, %for.cond591
  br i1 undef, label %for.end670, label %for.body664

for.end670:                                       ; preds = %for.body664
  br label %sw.epilog

sw.epilog:                                        ; preds = %for.end670, %for.end96
  ret void

polly.loop_header228:                             ; preds = %polly.loop_header228, %for.cond375.preheader
  %_p_splat_one = load <1 x i16>, <1 x i16>* undef, align 8
  %_p_splat = shufflevector <1 x i16> %_p_splat_one, <1 x i16> %_p_splat_one, <4 x i32> zeroinitializer
  %0 = trunc <4 x i16> %_p_splat to <4 x i8>
  store <4 x i8> %0, <4 x i8>* undef, align 8
  br label %polly.loop_header228
}