mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
f7935a3f63
`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: 309774
35 lines
1.4 KiB
LLVM
35 lines
1.4 KiB
LLVM
; RUN: llc < %s -mtriple=i686-- | not grep movb
|
|
|
|
define signext i16 @f(i32* %bp, i32* %ss) {
|
|
entry:
|
|
br label %cond_next127
|
|
|
|
cond_next127: ; preds = %cond_next391, %entry
|
|
%v.1 = phi i32 [ undef, %entry ], [ %tmp411, %cond_next391 ] ; <i32> [#uses=1]
|
|
%tmp149 = mul i32 0, %v.1 ; <i32> [#uses=0]
|
|
%tmpss = load i32, i32* %ss, align 4 ; <i32> [#uses=1]
|
|
%tmpbp = load i32, i32* %bp, align 4 ; <i32> [#uses=2]
|
|
%tmp254 = and i32 %tmpss, 15 ; <i32> [#uses=1]
|
|
%tmp256 = and i32 %tmpbp, 15 ; <i32> [#uses=2]
|
|
br label %cond_next391
|
|
|
|
cond_next391: ; preds = %cond_next127
|
|
%tmp393 = load i32, i32* %ss, align 4 ; <i32> [#uses=1]
|
|
%tmp395 = load i32, i32* %bp, align 4 ; <i32> [#uses=2]
|
|
%tmp396 = shl i32 %tmp393, %tmp395 ; <i32> [#uses=2]
|
|
%tmp398 = sub i32 32, %tmp256 ; <i32> [#uses=2]
|
|
%tmp399 = lshr i32 %tmp396, %tmp398 ; <i32> [#uses=1]
|
|
%tmp405 = lshr i32 %tmp396, 31 ; <i32> [#uses=1]
|
|
%tmp406 = add i32 %tmp405, -1 ; <i32> [#uses=1]
|
|
%tmp409 = lshr i32 %tmp406, %tmp398 ; <i32> [#uses=1]
|
|
%tmp411 = sub i32 %tmp399, %tmp409 ; <i32> [#uses=1]
|
|
%tmp422445 = add i32 %tmp254, 0 ; <i32> [#uses=1]
|
|
%tmp426447 = add i32 %tmp395, %tmp256 ; <i32> [#uses=1]
|
|
store i32 %tmp426447, i32* %bp, align 4
|
|
%tmp429448 = icmp ult i32 %tmp422445, 63 ; <i1> [#uses=1]
|
|
br i1 %tmp429448, label %cond_next127, label %UnifiedReturnBlock
|
|
|
|
UnifiedReturnBlock: ; preds = %cond_next391
|
|
ret i16 0
|
|
}
|