mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +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
23 lines
648 B
LLVM
23 lines
648 B
LLVM
; RUN: llc -mtriple=x86_64-- < %s
|
|
|
|
define void @dw2102_i2c_transfer() nounwind {
|
|
entry:
|
|
br label %bb
|
|
|
|
bb: ; preds = %bb, %entry
|
|
%z = phi i64 [ 0, %entry ], [ %z3, %bb ]
|
|
%z1 = phi i16 [ undef, %entry ], [ %z6, %bb ]
|
|
%z2 = phi i32 [ 0, %entry ], [ %z8, %bb ]
|
|
%z3 = add i64 %z, 1
|
|
%z4 = zext i16 %z1 to i32
|
|
%z5 = add nsw i32 %z4, %z2
|
|
%z6 = trunc i32 %z5 to i16
|
|
call fastcc void @dw210x_op_rw(i16 zeroext %z6)
|
|
%z7 = getelementptr i8, i8* null, i64 %z
|
|
store i8 undef, i8* %z7, align 1
|
|
%z8 = add nsw i32 %z2, 1
|
|
br label %bb
|
|
}
|
|
|
|
declare fastcc void @dw210x_op_rw(i16 zeroext) nounwind
|