Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / MachO / lto-irmover-warning.ll
blobcc1077c4e0e15a95de67769b71f52d17f1bd71e0
1 ; REQUIRES: x86
2 ; RUN: rm -rf %t; split-file %s %t
3 ; RUN: llvm-as -o %t/first.bc %t/first.ll
4 ; RUN: llvm-as -o %t/second.bc %t/second.ll
5 ; RUN: %no-fatal-warnings-lld -dylib %t/first.bc %t/second.bc -o /dev/null 2>&1 | FileCheck %s
7 ;; FIXME: can we replace ld-temp.o with a proper name?
8 ; CHECK: warning: linking module flags 'foo': IDs have conflicting values ('i32 2' from {{.*}}second.bc with 'i32 1' from ld-temp.o)
10 ;--- first.ll
11 target triple = "x86_64-apple-macosx10.15.0"
12 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
14 declare void @f()
16 define void @g() {
17   call void @f()
18   ret void
21 !0 = !{ i32 2, !"foo", i32 1 }
23 !llvm.module.flags = !{ !0 }
25 ;--- second.ll
26 target triple = "x86_64-apple-macosx10.15.0"
27 target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
29 define void @f() {
30   ret void
33 !0 = !{ i32 2, !"foo", i32 2 }
35 !llvm.module.flags = !{ !0 }