1 ; RUN: llvm-as %s -o %t0.o
2 ; RUN: llvm-as < %p/Inputs/largedatathreshold.ll > %t1.o
3 ; RUN: not llvm-lto2 run -r %t0.o,_start,px -r %t1.o,bar,px -r %t0.o,_GLOBAL_OFFSET_TABLE_, \
4 ; RUN: -r %t1.o,_GLOBAL_OFFSET_TABLE_, %t0.o %t1.o -o %t2.s 2>&1 | FileCheck %s
6 ; CHECK: 'Large Data Threshold': IDs have conflicting values: 'i32 101' from {{.*}}, and 'i32 100' from {{.*}}
8 target triple = "x86_64-unknown-linux-gnu"
9 target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
11 @data = internal constant [20 x i8] zeroinitializer
13 define ptr @_start() {
18 !llvm.module.flags = !{!0, !1}
20 !0 = !{i32 1, !"Code Model", i32 3}
21 !1 = !{i32 1, !"Large Data Threshold", i32 100}