summaryrefslogtreecommitdiffstats
path: root/llvm/test/Transforms/NewGVN/pr24426.ll
blob: 26e7a9f223f6a2ba7f56e4f841e78a9d9f66ab45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; RUN: opt < %s -memcpyopt -mldst-motion -newgvn -S | FileCheck %s

declare void @check(i8)

declare void @write(i8* %res)

define void @test1() {
  %1 = alloca [10 x i8]
  %2 = bitcast [10 x i8]* %1 to i8*
  call void @write(i8* %2)
  %3 = load i8, i8* %2

; CHECK-NOT: undef
  call void @check(i8 %3)

  ret void
}

OpenPOWER on IntegriCloud