brintos

brintos / llvm-project-archived public Read only

0
0
Text · 441 B · 1133f1d Raw
17 lines · plain
1; REQUIRES: x862; RUN: llvm-as %s -o %t.o3; RUN: llvm-as %p/Inputs/internalize-undef.ll -o %t2.o4; RUN: ld.lld %t.o %t2.o -o %t -save-temps5; RUN: llvm-dis < %t.0.2.internalize.bc | FileCheck %s6 7target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"8target triple = "x86_64-unknown-linux-gnu"9 10declare void @f()11define void @_start() {12  call void @f()13  ret void14}15 16; CHECK: define internal void @f()17