Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Linker / comdat-samesize.ll
blobb117f9308b3e75e2923b501036447128e8aaccc5
1 ; RUN: rm -rf %t && split-file %s %t
2 ; RUN: not llvm-link %t/diff-size.ll %t/diff-size-aux.ll -S -o - 2>&1 | FileCheck %s --check-prefix=DIFF_SIZE
4 ;--- diff-size.ll
5 ; DIFF_SIZE: Linking COMDATs named 'foo': SameSize violated!
6 target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
7 target triple = "i686-pc-windows-msvc"
9 $foo = comdat samesize
10 @foo = global i32 42, comdat($foo)
12 ;--- diff-size-aux.ll
13 target datalayout = "e-m:w-p:32:32-i64:64-f80:32-n8:16:32-S32"
14 target triple = "i686-pc-windows-msvc"
16 $foo = comdat samesize
17 @foo = global i64 42, comdat($foo)