mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
f89da7210b
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179361 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
968 B
LLVM
27 lines
968 B
LLVM
; RUN: llc -filetype=obj -march=mips64el -mcpu=mips64 -disable-mips-delay-filler %s -o - | llvm-readobj -r | FileCheck %s
|
|
|
|
; Check for N64 relocation production.
|
|
;
|
|
; ModuleID = '../hello.c'
|
|
target datalayout = "e-p:64:64:64-i1:8:8-i8:8:32-i16:16:32-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128-v64:64:64-n32"
|
|
target triple = "mips64el-unknown-linux"
|
|
|
|
@str = private unnamed_addr constant [12 x i8] c"hello world\00"
|
|
|
|
define i32 @main() nounwind {
|
|
entry:
|
|
; Check that the appropriate relocations were created.
|
|
|
|
; CHECK: Relocations [
|
|
; CHECK: 0x{{[0-9,A-F]+}} R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_HI16
|
|
; CHECK: 0x{{[0-9,A-F]+}} R_MIPS_GPREL16/R_MIPS_SUB/R_MIPS_LO16
|
|
; CHECK: 0x{{[0-9,A-F]+}} R_MIPS_GOT_PAGE/R_MIPS_NONE/R_MIPS_NONE
|
|
; CHECK: 0x{{[0-9,A-F]+}} R_MIPS_GOT_OFST/R_MIPS_NONE/R_MIPS_NONE
|
|
; CHECK: ]
|
|
|
|
%puts = tail call i32 @puts(i8* getelementptr inbounds ([12 x i8]* @str, i64 0, i64 0))
|
|
ret i32 0
|
|
|
|
}
|
|
declare i32 @puts(i8* nocapture) nounwind
|