mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-29 10:32:47 +00:00
AArch64: add AArch64-specific test for 'c' and 'n'.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@209664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3f01f5296e
commit
be5c8baeb6
10
test/CodeGen/AArch64/asm-large-immediate.ll
Normal file
10
test/CodeGen/AArch64/asm-large-immediate.ll
Normal file
@ -0,0 +1,10 @@
|
||||
; RUN: llc -march=aarch64 -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user