You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
; REQUIRES: shell
|
|
; RUN: llvm-link %s %S/Inputs/datalayout-a.ll -S -o - 2>%t.a.err
|
|
; RUN: (echo foo ;cat %t.a.err) | FileCheck --check-prefix=WARN-A %s
|
|
|
|
; RUN: llvm-link %s %S/Inputs/datalayout-b.ll -S -o - 2>%t.b.err
|
|
; RUN: cat %t.b.err | FileCheck --check-prefix=WARN-B %s
|
|
|
|
target datalayout = "e"
|
|
|
|
|
|
; WARN-A-NOT: WARNING
|
|
|
|
; WARN-B: WARNING: Linking two modules of different data layouts:
|