Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Transforms / GlobalDCE / 2003-07-01-SelfReference.ll
blob67b096d4cda7ba7edb8c250be2b71c47bcd60f60
1 ; distilled from 255.vortex
2 ; RUN: opt < %s -passes=globaldce -S | FileCheck %s
4 ; CHECK-NOT: testfunc
6 declare ptr @getfunc()
8 define internal i1 @testfunc() {
9   %F = call ptr @getfunc()                ; <ptr> [#uses=1]
10   %c = icmp eq ptr %F, @testfunc          ; <i1> [#uses=1]
11   ret i1 %c