mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
Add test for LinkModules warning on triple, modified by r203009. Datalayout is already tested.
llvm-svn: 203468
This commit is contained in:
parent
a461fb6a91
commit
4c9e269281
1
test/Linker/Inputs/targettriple-a.ll
Normal file
1
test/Linker/Inputs/targettriple-a.ll
Normal file
@ -0,0 +1 @@
|
||||
target triple = "e"
|
1
test/Linker/Inputs/targettriple-b.ll
Normal file
1
test/Linker/Inputs/targettriple-b.ll
Normal file
@ -0,0 +1 @@
|
||||
target triple = "E"
|
14
test/Linker/targettriple.ll
Normal file
14
test/Linker/targettriple.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
|
||||
; RUN: cat %t.a.err | not FileCheck %s 2>&1 | FileCheck --check-prefix=WARN-A %s
|
||||
|
||||
; RUN: llvm-link %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.b.err | FileCheck %s
|
||||
; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
|
||||
|
||||
target triple = "e"
|
||||
|
||||
; CHECK: target triple = "e"
|
||||
|
||||
; this is a hack to check that llvm-link printed no warnings.
|
||||
; WARN-A: FileCheck error: '-' is empty.
|
||||
|
||||
; WARN-B: WARNING: Linking two modules of different target triples:
|
Loading…
Reference in New Issue
Block a user