brintos

brintos / llvm-project-archived public Read only

0
0
Text · 720 B · bd08ff6 Raw
21 lines · plain
1; REQUIRES: x862; RUN: llvm-as %s -o %t.o3; RUN: %lld -lSystem %t.o -o %ts -mllvm -code-model=small4; RUN: %lld -lSystem %t.o -o %tl -mllvm -code-model=large5; RUN: llvm-objdump --no-print-imm-hex -d %ts | FileCheck %s --check-prefix=CHECK-SMALL6; RUN: llvm-objdump --no-print-imm-hex -d %tl | FileCheck %s --check-prefix=CHECK-LARGE7 8target triple = "x86_64-apple-darwin"9target datalayout = "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"10 11@data = internal constant [0 x i32] []12 13define ptr @main() nounwind readonly {14entry:15; CHECK-SMALL-LABEL: <_main>:16; CHECK-SMALL:       leaq    [[#]](%rip), %rax17; CHECK-LARGE-LABEL: <_main>:18; CHECK-LARGE:       movabsq $[[#]], %rax19  ret ptr @data20}21