1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-22 20:43:44 +02:00
llvm-mirror/test/CodeGen/X86/2008-04-16-CoalescerBug.ll
Matthias Braun f7935a3f63 X86: Do not use llc -march in tests.
`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
2017-08-02 00:28:10 +00:00

34 lines
1.3 KiB
LLVM

; RUN: llc < %s -mtriple=i686--
define void @Hubba(i8* %saveunder, i32 %firstBlob, i32 %select) nounwind {
entry:
br i1 false, label %bb53.us, label %bb53
bb53.us: ; preds = %bb94.us, %bb53.us, %entry
switch i8 1, label %bb71.us [
i8 0, label %bb53.us
i8 1, label %bb94.us
]
bb94.us: ; preds = %bb71.us, %bb53.us
%result.0.us = phi i32 [ %tmp93.us, %bb71.us ], [ 0, %bb53.us ] ; <i32> [#uses=2]
%tmp101.us = lshr i32 %result.0.us, 3 ; <i32> [#uses=1]
%result.0163.us = trunc i32 %result.0.us to i16 ; <i16> [#uses=2]
shl i16 %result.0163.us, 7 ; <i16>:0 [#uses=1]
%tmp106.us = and i16 %0, -1024 ; <i16> [#uses=1]
shl i16 %result.0163.us, 2 ; <i16>:1 [#uses=1]
%tmp109.us = and i16 %1, -32 ; <i16> [#uses=1]
%tmp111112.us = trunc i32 %tmp101.us to i16 ; <i16> [#uses=1]
%tmp110.us = or i16 %tmp109.us, %tmp111112.us ; <i16> [#uses=1]
%tmp113.us = or i16 %tmp110.us, %tmp106.us ; <i16> [#uses=1]
store i16 %tmp113.us, i16* null, align 2
br label %bb53.us
bb71.us: ; preds = %bb53.us
%tmp80.us = load i8, i8* null, align 1 ; <i8> [#uses=1]
%tmp8081.us = zext i8 %tmp80.us to i32 ; <i32> [#uses=1]
%tmp87.us = mul i32 %tmp8081.us, 0 ; <i32> [#uses=1]
%tmp92.us = add i32 0, %tmp87.us ; <i32> [#uses=1]
%tmp93.us = udiv i32 %tmp92.us, 255 ; <i32> [#uses=1]
br label %bb94.us
bb53: ; preds = %entry
ret void
}