1 ; RUN: llvm-link %s %S/Inputs/apple-version/1.ll -S -o - 2>%t.err | FileCheck %s -check-prefix=CHECK1 2 ; RUN: cat %t.err | FileCheck --check-prefix=WARN1 --allow-empty %s 3 ; RUN: llvm-link %s %S/Inputs/apple-version/2.ll -S -o - 2>%t.err | FileCheck %s -check-prefix=CHECK2 4 ; RUN: cat %t.err | FileCheck --check-prefix=WARN2 --allow-empty %s 5 ; RUN: llvm-link %s %S/Inputs/apple-version/3.ll -S -o /dev/null 2>%t.err 6 ; RUN: cat %t.err | FileCheck --check-prefix=WARN3 %s 7 ; RUN: llvm-link %s %S/Inputs/apple-version/4.ll -S -o /dev/null 2>%t.err 8 ; RUN: cat %t.err | FileCheck --check-prefix=WARN4 --allow-empty %s 9 10 ; Check that the triple that has the larger version number is chosen and no 11 ; warnings are issued when the Triples differ only in version numbers. 12 13 ; CHECK1: target triple = "x86_64-apple-macosx10.10.0" 14 ; WARN1-NOT: WARNING 15 ; CHECK2: target triple = "x86_64-apple-macosx10.9.0" 16 ; WARN2-NOT: WARNING 17 18 ; i386 and x86_64 map to different ArchType enums. 19 ; WARN3: WARNING: Linking two modules of different target triples 20 21 ; x86_64h and x86_64 map to the same ArchType enum. 22 ; WARN4-NOT: WARNING 23 24 target triple = "x86_64-apple-macosx10.9.0" 25