mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
baa45eb64c
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 llvm-svn: 296907
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
|
|
}
|