File: pr32045.ll

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-6~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,418,812 kB
  • sloc: cpp: 5,290,827; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,900; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,892; xml: 953; cs: 573; fortran: 539
file content (39 lines) | stat: -rw-r--r-- 1,029 bytes parent folder | download | duplicates (15)
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
; RUN: opt -S -indvars < %s | FileCheck %s

; This is not an IndVarSimplify bug, but the original symptom
; manifested as one.

define i32 @foo(i32 %a, i32 %b, i32 %c, i32* %sink) {
; CHECK-LABEL: @foo(
; CHECK:       for.end:
; CHECK-NEXT:    [[SHR:%.*]] = ashr i32 %neg3, -1
; CHECK-NEXT:    [[SUB:%.*]] = sub nsw i32 0, [[SHR]]
; CHECK-NEXT:    [[SHR1:%.*]] = ashr i32 [[SUB]], [[B:%.*]]
; CHECK-NEXT:    [[NEG:%.*]] = xor i32 [[SHR1]], -1
; CHECK-NEXT:    store i32 [[NEG]], i32* %sink
;
entry:
  %tobool2 = icmp eq i32 %a, 0
  br i1 %tobool2, label %exit, label %preheader

preheader:
  %neg3 = phi i32 [ %c, %entry ], [ %neg, %for.end ]
  br label %for

for:
  %p = phi i32 [ %dec, %for ], [ 1, %preheader ]
  %cmp = icmp sgt i32 %p, -1
  %dec = add nsw i32 %p, -1
  br i1 %cmp, label %for, label %for.end

for.end:
  %shr = ashr i32 %neg3, %p
  %sub = sub nsw i32 0, %shr
  %shr1 = ashr i32 %sub, %b
  %neg = xor i32 %shr1, -1
  store i32 %neg, i32* %sink
  br i1 false, label %exit, label %preheader

exit:
  ret i32 0
}