mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
14 lines
320 B
LLVM
14 lines
320 B
LLVM
|
; 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(
|