brintos

brintos / llvm-project-archived public Read only

0
0
Text · 381 B · 471412d Raw
17 lines · plain
1; RUN: llvm-as %s -o %t.o2 3; RUN: %gold -plugin %llvmshlibdir/LLVMgold%shlibext \4; RUN:    --plugin-opt=emit-llvm \5; RUN:    -shared %t.o -o %t2.o6; RUN: llvm-dis %t2.o -o - | FileCheck %s7 8target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"9 10@a = internal unnamed_addr constant i8 4211 12define ptr @f() {13  ret ptr @a14}15 16; CHECK: @a = internal unnamed_addr constant i8 4217