blob: 67b096d4cda7ba7edb8c250be2b71c47bcd60f60 [file] [log] [blame]
; distilled from 255.vortex
; RUN: opt < %s -passes=globaldce -S | FileCheck %s
; CHECK-NOT: testfunc
declare ptr @getfunc()
define internal i1 @testfunc() {
%F = call ptr @getfunc() ; <ptr> [#uses=1]
%c = icmp eq ptr %F, @testfunc ; <i1> [#uses=1]
ret i1 %c
}