1; REQUIRES: x86
2; RUN: llvm-as %s -o %t.o
3; RUN: ld.lld %t.o -o %ts -mllvm -code-model=small
4; RUN: ld.lld %t.o -o %tl -mllvm -code-model=large
5; RUN: llvm-objdump -d %ts | FileCheck %s --check-prefix=CHECK-SMALL
6; RUN: llvm-objdump -d %tl | FileCheck %s --check-prefix=CHECK-LARGE
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 [0 x i32] []
12
13define i32* @_start() nounwind readonly {
14entry:
15; CHECK-SMALL-LABEL:  <_start>:
16; CHECK-SMALL: movl    $2097440, %eax
17; CHECK-LARGE-LABEL: <_start>:
18; CHECK-LARGE: movabsq $2097440, %rax
19    ret i32* getelementptr ([0 x i32], [0 x i32]* @data, i64 0, i64 0)
20}
21