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
25 lines
967 B
LLVM
25 lines
967 B
LLVM
; RUN: llc < %s -mtriple=i686-- -mcpu=yonah -no-integrated-as
|
|
|
|
define void @test1() {
|
|
tail call void asm sideeffect "ucomiss $0", "x"( float 0x41E0000000000000)
|
|
ret void
|
|
}
|
|
|
|
define void @test2() {
|
|
%tmp53 = tail call i32 asm "ucomiss $1, $3\0Acmovae $2, $0 ", "=r,mx,mr,x,0,~{dirflag},~{fpsr},~{flags},~{cc}"( float 0x41E0000000000000, i32 2147483647, float 0.000000e+00, i32 0 ) ; <i32> [#uses
|
|
unreachable
|
|
}
|
|
|
|
define void @test3() {
|
|
tail call void asm sideeffect "ucomiss $0, $1", "mx,x,~{dirflag},~{fpsr},~{flags},~{cc}"( float 0x41E0000000000000, i32 65536 )
|
|
ret void
|
|
}
|
|
|
|
define void @test4() {
|
|
%tmp1 = tail call float asm "", "=x,0,~{dirflag},~{fpsr},~{flags}"( float 0x47EFFFFFE0000000 ); <float> [#uses=1]
|
|
%tmp4 = fsub float %tmp1, 0x3810000000000000 ; <float> [#uses=1]
|
|
tail call void asm sideeffect "", "x,~{dirflag},~{fpsr},~{flags}"( float %tmp4 )
|
|
ret void
|
|
}
|
|
|