brintos

brintos / llvm-project-archived public Read only

0
0
Text · 728 B · 496b71e Raw
22 lines · plain
1; RUN: llvm-as %s -o %t0.o2; RUN: llvm-as < %p/Inputs/largedatathreshold.ll > %t1.o3; 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 %s5 6; CHECK: 'Large Data Threshold': IDs have conflicting values: 'i32 101' from {{.*}}, and 'i32 100' from {{.*}}7 8target triple = "x86_64-unknown-linux-gnu"9target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"10 11@data = internal constant [20 x i8] zeroinitializer12 13define ptr @_start() {14entry:15  ret ptr @data16}17 18!llvm.module.flags = !{!0, !1}19 20!0 = !{i32 1, !"Code Model", i32 3}21!1 = !{i32 1, !"Large Data Threshold", i32 100}22