mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
b3a8585bc1
`llc -march` is problematic because it only switches the target architecture, but leaves the operating system unchanged. This occasionally leads to indeterministic tests because the OS from LLVM_DEFAULT_TARGET_TRIPLE is used. However we can simply always use `llc -mtriple` instead. This changes all the tests to do this to avoid people using -march when they copy and paste parts of tests. This patch: - Removes -march if the .ll file already has a matching `target triple` directive or -mtriple argument. - In all other cases changes -march=ppc32/-march=ppc64 to -mtriple=ppc32--/-mtriple=ppc64-- See also the discussion in https://reviews.llvm.org/D35287 llvm-svn: 309754
31 lines
1.3 KiB
LLVM
31 lines
1.3 KiB
LLVM
; RUN: llc < %s -mtriple=powerpc-apple-darwin8 | FileCheck %s -check-prefix=CHECK-PPC32
|
|
; RUN: llc < %s -mtriple=powerpc64-apple-darwin8 | FileCheck %s -check-prefix=CHECK-PPC64
|
|
; RUN: llc < %s -mtriple=powerpc-apple-darwin8 -disable-fp-elim | FileCheck %s -check-prefix=CHECK-PPC32-NOFP
|
|
; RUN: llc < %s -mtriple=powerpc64-apple-darwin8 -disable-fp-elim | FileCheck %s -check-prefix=CHECK-PPC64-NOFP
|
|
; RUN: llc < %s -mtriple=powerpc-apple-darwin8 | FileCheck %s -check-prefix=CHECK-PPC32
|
|
; RUN: llc < %s -mtriple=powerpc-apple-darwin8 | FileCheck %s -check-prefix=CHECK-PPC32-RS
|
|
; RUN: llc < %s -mtriple=powerpc-apple-darwin8 -disable-fp-elim | FileCheck %s -check-prefix=CHECK-PPC32-RS-NOFP
|
|
|
|
; CHECK-PPC32: stw r31, -4(r1)
|
|
; CHECK-PPC32: lwz r1, 0(r1)
|
|
; CHECK-PPC32: lwz r31, -4(r1)
|
|
; CHECK-PPC32-NOFP: stw r31, -4(r1)
|
|
; CHECK-PPC32-NOFP: lwz r1, 0(r1)
|
|
; CHECK-PPC32-NOFP: lwz r31, -4(r1)
|
|
; CHECK-PPC32-RS: stwu r1, -48(r1)
|
|
; CHECK-PPC32-RS-NOFP: stwu r1, -48(r1)
|
|
|
|
; CHECK-PPC64: std r31, -8(r1)
|
|
; CHECK-PPC64: stdu r1, -64(r1)
|
|
; CHECK-PPC64: ld r1, 0(r1)
|
|
; CHECK-PPC64: ld r31, -8(r1)
|
|
; CHECK-PPC64-NOFP: std r31, -8(r1)
|
|
; CHECK-PPC64-NOFP: stdu r1, -64(r1)
|
|
; CHECK-PPC64-NOFP: ld r1, 0(r1)
|
|
; CHECK-PPC64-NOFP: ld r31, -8(r1)
|
|
|
|
define i32* @f1(i32 %n) nounwind {
|
|
%tmp = alloca i32, i32 %n ; <i32*> [#uses=1]
|
|
ret i32* %tmp
|
|
}
|