77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 ; REQUIRES: shell
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
|
83
|
3 ; RUN: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty
|
77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
6 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
|
83
|
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
|
77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
9
|
83
|
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
|
77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
12
|
83
|
13 target triple = "x86_64-unknown-linux-gnu"
|
|
14
|
|
15 ; CHECK: target triple = "x86_64-unknown-linux-gnu"
|
77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
16
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
17 ; WARN-A-NOT: WARNING
|
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
18
|
83
|
19 ; i386 and x86_64 map to different ArchType enums.
|
77
Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
20 ; WARN-B: WARNING: Linking two modules of different target triples:
|
83
|
21
|
|
22 ; x86_64h and x86_64 map to the same ArchType enum.
|
|
23 ; WARN-C-NOT: WARNING
|