llvm-project/llvm/test/ThinLTO/X86/Inputs/linkonce_resolution_comdat.ll
Eric Christopher 0824096cc0 Temporarily revert "For X86-64 linux and PPC64 linux align int128 to 16 bytes."
until we can get better TargetMachine::isCompatibleDataLayout to compare - otherwise
we can't code generate existing bitcode without a string equality data layout.

This reverts commit r294702.

llvm-svn: 294709
2017-02-10 04:35:32 +00:00

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"
$c2 = comdat any
define linkonce_odr i32 @f(i8*) unnamed_addr comdat($c2) {
ret i32 41
}
define i32 @g() {
%i = call i32 @f(i8* null)
ret i32 %i
}