Akira Hatanaka | ac844bf | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 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" |
Jonas Devlieghere | 22942f7 | 2018-04-18 14:41:47 +0000 | [diff] [blame] | 14 | ; WARN1-NOT: warning |
Akira Hatanaka | ac844bf | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 15 | ; CHECK2: target triple = "x86_64-apple-macosx10.9.0" |
Jonas Devlieghere | 22942f7 | 2018-04-18 14:41:47 +0000 | [diff] [blame] | 16 | ; WARN2-NOT: warning |
Akira Hatanaka | ac844bf | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 17 | |
| 18 | ; i386 and x86_64 map to different ArchType enums. |
Jonas Devlieghere | 22942f7 | 2018-04-18 14:41:47 +0000 | [diff] [blame] | 19 | ; WARN3: warning: Linking two modules of different target triples |
Akira Hatanaka | ac844bf | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 20 | |
| 21 | ; x86_64h and x86_64 map to the same ArchType enum. |
Jonas Devlieghere | 22942f7 | 2018-04-18 14:41:47 +0000 | [diff] [blame] | 22 | ; WARN4-NOT: warning |
Akira Hatanaka | ac844bf | 2015-02-13 00:40:41 +0000 | [diff] [blame] | 23 | |
| 24 | target triple = "x86_64-apple-macosx10.9.0" |