You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
410 B
12 lines
410 B
4 months ago
|
; 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
|
||
|
}
|
||
|
|