R600/SI: Minor test scheduling fixes
[oota-llvm.git] / test / Linker / targettriple.ll
1 ; REQUIRES: shell
2 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
3 ; RUN: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty
4
5 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
6 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
7 ; RUN: llvm-link %s %S/Inputs/targettriple-c.ll -S -o - 2>%t.c.err | FileCheck %s
8 ; RUN: cat %t.c.err | FileCheck --check-prefix=WARN-C %s --allow-empty
9
10 ; RUN: llvm-link -suppress-warnings %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.no-warn.err | FileCheck %s
11 ; RUN: cat %t.no-warn.err | FileCheck --check-prefix=WARN-A %s --allow-empty
12
13 target triple = "x86_64-unknown-linux-gnu"
14
15 ; CHECK: target triple = "x86_64-unknown-linux-gnu"
16
17 ; WARN-A-NOT: WARNING
18
19 ; i386 and x86_64 map to different ArchType enums.
20 ; WARN-B: WARNING: Linking two modules of different target triples:
21
22 ; x86_64h and x86_64 map to the same ArchType enum.
23 ; WARN-C-NOT: WARNING