File: load-from-unreachable-predecessor.ll

package info (click to toggle)
llvm-toolchain-11 1%3A11.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 995,808 kB
  • sloc: cpp: 4,767,656; ansic: 760,916; asm: 477,436; python: 170,940; objc: 69,804; lisp: 29,914; sh: 23,855; f90: 18,173; pascal: 7,551; perl: 7,471; ml: 5,603; awk: 3,489; makefile: 2,573; xml: 915; cs: 573; fortran: 503; javascript: 452
file content (20 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (22)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
; RUN: opt -gvn -S < %s | FileCheck %s

; Check that an unreachable predecessor to a PHI node doesn't cause a crash.
; PR21625.

define i32 @f(i32** %f) {
; CHECK: bb0:
; Load should be removed, since it's ignored.
; CHECK-NEXT: br label
bb0:
  %bar = load i32*, i32** %f
  br label %bb2
bb1:
  %zed = load i32*, i32** %f
  br i1 false, label %bb1, label %bb2
bb2:
  %foo = phi i32* [ null, %bb0 ], [ %zed, %bb1 ]
  %storemerge = load i32, i32* %foo
  ret i32 %storemerge
}