comparison test/Linker/targettriple.ll @ 83:60c9769439b8 LLVM3.7

LLVM 3.7
author Tatsuki IHA <e125716@ie.u-ryukyu.ac.jp>
date Wed, 18 Feb 2015 14:55:36 +0900
parents 54457678186b
children afa8332a0e37
comparison
equal deleted inserted replaced
78:af83660cff7b 83:60c9769439b8
1 ; REQUIRES: shell 1 ; REQUIRES: shell
2 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s 2 ; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
3 ; RUN: (echo foo ;cat %t.a.err) | FileCheck --check-prefix=WARN-A %s 3 ; RUN: cat %t.a.err | FileCheck --check-prefix=WARN-A %s --allow-empty
4 4
5 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s 5 ; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
6 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s 6 ; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
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
7 9
8 target triple = "e" 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
9 12
10 ; CHECK: target triple = "e" 13 target triple = "x86_64-unknown-linux-gnu"
14
15 ; CHECK: target triple = "x86_64-unknown-linux-gnu"
11 16
12 ; WARN-A-NOT: WARNING 17 ; WARN-A-NOT: WARNING
13 18
19 ; i386 and x86_64 map to different ArchType enums.
14 ; WARN-B: WARNING: Linking two modules of different target triples: 20 ; WARN-B: WARNING: Linking two modules of different target triples:
21
22 ; x86_64h and x86_64 map to the same ArchType enum.
23 ; WARN-C-NOT: WARNING