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