mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
2ba97c3d3b
NFC at the moment but it will prevent a failure when IAS is enabled by default. llvm-svn: 253039
12 lines
410 B
LLVM
12 lines
410 B
LLVM
; RUN: llc -march=mipsel -no-integrated-as < %s | FileCheck %s
|
|
|
|
define void @test() {
|
|
entry:
|
|
; CHECK: /* result: 68719476738 */
|
|
tail call void asm sideeffect "/* result: ${0:c} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
|
|
; CHECK: /* result: -68719476738 */
|
|
tail call void asm sideeffect "/* result: ${0:n} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
|
|
ret void
|
|
}
|
|
|