Xamarin Public Jenkins (auto-signing) 64ac736ec5 Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
2019-04-12 14:10:50 +00:00

19 lines
457 B
LLVM

; RUN: opt -S -bdce < %s | FileCheck %s
target triple = "x86_64-unknown-linux-gnu"
define void @PR34211(i16* %p) {
; CHECK-LABEL: @PR34211
%not_demanded_but_not_dead = load volatile i16, i16* %p
call void @no_side_effects_so_dead(i16 %not_demanded_but_not_dead)
ret void
; CHECK: %not_demanded_but_not_dead = load volatile i16, i16* %p
; CHECK-NEXT: ret void
}
declare void @no_side_effects_so_dead(i16) #0
attributes #0 = { nounwind readnone }