new testcase

llvm-svn: 7043
This commit is contained in:
Chris Lattner 2003-07-01 18:52:01 +00:00
parent 6fa0bd2ce5
commit 3242ae8792

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
}