mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-11 07:15:26 +00:00
f974ccff67
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@268207 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
327 B
LLVM
14 lines
327 B
LLVM
; distilled from 255.vortex
|
|
; RUN: opt < %s -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
|
|
}
|
|
|