mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
d2e6077460
`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. See also the discussion in https://reviews.llvm.org/D35287 llvm-svn: 309755
37 lines
1.1 KiB
LLVM
37 lines
1.1 KiB
LLVM
; RUN: llc -mcpu=cortex-a8 -verify-machineinstrs < %s
|
|
; PR12165
|
|
target datalayout = "e-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-p:32:32:32-v128:32:32"
|
|
target triple = "arm-none-linux"
|
|
|
|
define hidden void @_strtod_r() nounwind {
|
|
br i1 undef, label %1, label %2
|
|
|
|
; <label>:1 ; preds = %0
|
|
br label %2
|
|
|
|
; <label>:2 ; preds = %1, %0
|
|
br i1 undef, label %3, label %8
|
|
|
|
; <label>:3 ; preds = %2
|
|
br i1 undef, label %4, label %7
|
|
|
|
; <label>:4 ; preds = %3
|
|
%5 = call i32 @llvm.flt.rounds()
|
|
%6 = icmp eq i32 %5, 1
|
|
br i1 %6, label %8, label %7
|
|
|
|
; <label>:7 ; preds = %4, %3
|
|
unreachable
|
|
|
|
; <label>:8 ; preds = %4, %2
|
|
br i1 undef, label %9, label %10
|
|
|
|
; <label>:9 ; preds = %8
|
|
br label %10
|
|
|
|
; <label>:10 ; preds = %9, %8
|
|
ret void
|
|
}
|
|
|
|
declare i32 @llvm.flt.rounds() nounwind
|