mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-19 18:10:14 +00:00
51da5c7631
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203011 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
529 B
LLVM
15 lines
529 B
LLVM
; RUN: llvm-link %s %S/Inputs/datalayout-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/datalayout-b.ll -S -o - 2>%t.b.err | FileCheck %s
|
|
; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
|
|
|
|
target datalayout = "e"
|
|
|
|
; CHECK: target datalayout = "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 data layouts:
|