• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
3
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
8
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
11
12target triple = "x86_64-unknown-linux-gnu"
13
14; CHECK: target triple = "x86_64-unknown-linux-gnu"
15
16; WARN-A-NOT: WARNING
17
18; i386 and x86_64 map to different ArchType enums.
19; WARN-B: WARNING: Linking two modules of different target triples:
20
21; x86_64h and x86_64 map to the same ArchType enum.
22; WARN-C-NOT: WARNING
23