mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-09 05:31:19 +00:00
d2c18d6b60
This change follows up defaults for GCC and Clang, so LLVM does not differ from them. While number of the test files are touched with this change, they all keep the old (expected) behaviour with the explicit option: "-relocation-model=pic" The tests that have not been touched are insensitive to relocation model. Differential Revision: http://reviews.llvm.org/D17995 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265949 91177308-0d34-0410-b5e6-96231b3b80d8
61 lines
2.0 KiB
LLVM
61 lines
2.0 KiB
LLVM
; RUN: llc < %s -march=mips64el -mcpu=mips4 -target-abi n64 -relocation-model=pic | FileCheck %s -check-prefix=CHECK-N64
|
|
; RUN: llc < %s -march=mips64el -mcpu=mips4 -target-abi n32 -relocation-model=pic | FileCheck %s -check-prefix=CHECK-N32
|
|
; RUN: llc < %s -march=mips64el -mcpu=mips64 -target-abi n64 -relocation-model=pic | FileCheck %s -check-prefix=CHECK-N64
|
|
; RUN: llc < %s -march=mips64el -mcpu=mips64 -target-abi n32 -relocation-model=pic | FileCheck %s -check-prefix=CHECK-N32
|
|
|
|
@f0 = common global float 0.000000e+00, align 4
|
|
@d0 = common global double 0.000000e+00, align 8
|
|
@f1 = common global float 0.000000e+00, align 4
|
|
@d1 = common global double 0.000000e+00, align 8
|
|
|
|
define float @funcfl1() nounwind readonly {
|
|
entry:
|
|
; CHECK-N64: funcfl1
|
|
; CHECK-N64: ld $[[R0:[0-9]+]], %got_disp(f0)
|
|
; CHECK-N64: lwc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
; CHECK-N32: funcfl1
|
|
; CHECK-N32: lw $[[R0:[0-9]+]], %got_disp(f0)
|
|
; CHECK-N32: lwc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
%0 = load float, float* @f0, align 4
|
|
ret float %0
|
|
}
|
|
|
|
define double @funcfl2() nounwind readonly {
|
|
entry:
|
|
; CHECK-N64: funcfl2
|
|
; CHECK-N64: ld $[[R0:[0-9]+]], %got_disp(d0)
|
|
; CHECK-N64: ldc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
; CHECK-N32: funcfl2
|
|
; CHECK-N32: lw $[[R0:[0-9]+]], %got_disp(d0)
|
|
; CHECK-N32: ldc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
%0 = load double, double* @d0, align 8
|
|
ret double %0
|
|
}
|
|
|
|
define void @funcfs1() nounwind {
|
|
entry:
|
|
; CHECK-N64: funcfs1
|
|
; CHECK-N64: ld $[[R0:[0-9]+]], %got_disp(f0)
|
|
; CHECK-N64: swc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
; CHECK-N32: funcfs1
|
|
; CHECK-N32: lw $[[R0:[0-9]+]], %got_disp(f0)
|
|
; CHECK-N32: swc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
%0 = load float, float* @f1, align 4
|
|
store float %0, float* @f0, align 4
|
|
ret void
|
|
}
|
|
|
|
define void @funcfs2() nounwind {
|
|
entry:
|
|
; CHECK-N64: funcfs2
|
|
; CHECK-N64: ld $[[R0:[0-9]+]], %got_disp(d0)
|
|
; CHECK-N64: sdc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
; CHECK-N32: funcfs2
|
|
; CHECK-N32: lw $[[R0:[0-9]+]], %got_disp(d0)
|
|
; CHECK-N32: sdc1 $f{{[0-9]+}}, 0($[[R0]])
|
|
%0 = load double, double* @d1, align 8
|
|
store double %0, double* @d0, align 8
|
|
ret void
|
|
}
|
|
|