mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 00:31:49 +00:00

To be able to work accurately on the reference graph when taking decision about internalizing, promoting, renaming, etc. We need to have the alias information explicit. Differential Revision: http://reviews.llvm.org/D18836 From: Mehdi Amini <mehdi.amini@apple.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@266517 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
265 B
LLVM
14 lines
265 B
LLVM
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
|
|
|
|
@analias = alias void (...), bitcast (void ()* @aliasee to void (...)*)
|
|
|
|
; Function Attrs: nounwind uwtable
|
|
define void @aliasee() #0 {
|
|
entry:
|
|
ret void
|
|
}
|
|
|