mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-13 06:38:44 +00:00
3b6bd9d6e0
NFC at the moment but it will prevent a failure when IAS is enabled by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@253039 91177308-0d34-0410-b5e6-96231b3b80d8
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
|
|
}
|
|
|