1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 19:23:23 +01:00
llvm-mirror/test/Transforms/GlobalDCE/global-ifunc.ll

14 lines
320 B
LLVM
Raw Normal View History

; RUN: opt -S -globaldce < %s | FileCheck %s
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
target triple = "x86_64-unknown-linux-gnu"
@if = ifunc void (), void ()* @fn
define internal void @fn() {
entry:
ret void
}
; CHECK-DAG: @if = ifunc void (), void ()* @fn
; CHECK-DAG: define internal void @fn(