23 lines · plain
1; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s2; RUN: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty3 4; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s5; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s6; RUN: llvm-link %s %S/Inputs/targettriple-c.ll -S -o - 2>%t.c.err | FileCheck %s7; RUN: cat %t.c.err | FileCheck --check-prefix=WARN-C %s --allow-empty8 9; RUN: llvm-link -suppress-warnings %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.no-warn.err | FileCheck %s10; RUN: cat %t.no-warn.err | FileCheck --check-prefix=WARN-A %s --allow-empty11 12target triple = "x86_64-unknown-linux-gnu"13 14; CHECK: target triple = "x86_64-unknown-linux-gnu"15 16; WARN-A-NOT: warning17 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: warning23