[llvm-objcopy] [COFF] Implement --only-section
[llvm-core.git] / test / Linker / targettriple.ll
blob214b5ec59f6adc36d66cbfafffbb732e496d08ca
1 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
2 ; RUN: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty
4 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
5 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
6 ; RUN: llvm-link %s %S/Inputs/targettriple-c.ll -S -o - 2>%t.c.err | FileCheck %s
7 ; RUN: cat %t.c.err | FileCheck --check-prefix=WARN-C %s --allow-empty
9 ; RUN: llvm-link -suppress-warnings %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.no-warn.err | FileCheck %s
10 ; RUN: cat %t.no-warn.err | FileCheck --check-prefix=WARN-A %s --allow-empty
12 target triple = "x86_64-unknown-linux-gnu"
14 ; CHECK: target triple = "x86_64-unknown-linux-gnu"
16 ; WARN-A-NOT: warning
18 ; i386 and x86_64 map to different ArchType enums.
19 ; WARN-B: warning: Linking two modules of different target triples:
21 ; x86_64h and x86_64 map to the same ArchType enum.
22 ; WARN-C-NOT: warning