mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-12 05:40:30 +00:00
![Peter Collingbourne](/assets/img/avatar_default.png)
This set may affect code generation and is sensitive to link order (and possibly in the future to the linker's choice of prevailing symbol), so we need to include it. Differential Revision: https://reviews.llvm.org/D30586 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@296907 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
222 B
LLVM
12 lines
222 B
LLVM
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
|
target triple = "x86_64-unknown-linux-gnu"
|
|
|
|
define void @f1() {
|
|
call void @linkonce_odr()
|
|
ret void
|
|
}
|
|
|
|
define linkonce_odr void @linkonce_odr() {
|
|
ret void
|
|
}
|