File: 2009-08-15-MissingDead.ll

package info (click to toggle)
llvm-2.7 2.7-6
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 59,992 kB
  • ctags: 49,499
  • sloc: cpp: 373,792; ansic: 16,885; sh: 12,614; asm: 6,809; ada: 3,083; ml: 2,942; python: 2,671; perl: 2,404; makefile: 1,691; pascal: 1,235; exp: 399; objc: 291; lisp: 184; csh: 117; xml: 38; f90: 36
file content (25 lines) | stat: -rw-r--r-- 1,111 bytes parent folder | download | duplicates (4)
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
; RUN: llc < %s -march=bfin -verify-machineinstrs

; LocalRewriter can forget to transfer a <def,dead> flag when setting up call
; argument registers. This then causes register scavenger asserts.

declare i32 @printf(i8*, i32, float)

define i32 @testissue(i32 %i, float %x, float %y) {
  br label %bb1

bb1:                                              ; preds = %bb1, %0
  %x2 = fmul float %x, 5.000000e-01               ; <float> [#uses=1]
  %y2 = fmul float %y, 0x3FECCCCCC0000000         ; <float> [#uses=1]
  %z2 = fadd float %x2, %y2                       ; <float> [#uses=1]
  %z3 = fadd float undef, %z2                     ; <float> [#uses=1]
  %i1 = shl i32 %i, 3                             ; <i32> [#uses=1]
  %j1 = add i32 %i, 7                             ; <i32> [#uses=1]
  %m1 = add i32 %i1, %j1                          ; <i32> [#uses=2]
  %b = icmp sle i32 %m1, 6                        ; <i1> [#uses=1]
  br i1 %b, label %bb1, label %bb2

bb2:                                              ; preds = %bb1
  %1 = call i32 @printf(i8* undef, i32 %m1, float %z3); <i32> [#uses=0]
  ret i32 0
}