new testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7043 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-07-01 18:52:01 +00:00
parent 487bc8f7fb
commit edc3c3d0fc

View File

@ -0,0 +1,11 @@
; distilled from 255.vortex
; RUN: as < %s | opt -globaldce | dis | not grep testfunc
implementation
declare bool()* %getfunc()
internal bool %testfunc() {
%F = call bool()*()* %getfunc()
%c = seteq bool()* %F, %testfunc
ret bool %c
}