mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
b31d53a60f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@220603 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
635 B
LLVM
18 lines
635 B
LLVM
; REQUIRES: shell
|
|
; RUN: llvm-link %s %S/Inputs/targettriple-a.ll -S -o - 2>%t.a.err | FileCheck %s
|
|
; RUN: (echo foo ;cat %t.a.err) | 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
|
|
|
|
; RUN: llvm-link -suppress-warnings %s %S/Inputs/targettriple-b.ll -S -o - 2>%t.no-warn.err | FileCheck %s
|
|
; RUN: (echo foo ;cat %t.no-warn.err) | FileCheck --check-prefix=WARN-A %s
|
|
|
|
target triple = "e"
|
|
|
|
; CHECK: target triple = "e"
|
|
|
|
; WARN-A-NOT: WARNING
|
|
|
|
; WARN-B: WARNING: Linking two modules of different target triples:
|