aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/AArch64/asm-large-immediate.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/AArch64/asm-large-immediate.ll')
-rw-r--r--test/CodeGen/AArch64/asm-large-immediate.ll10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/CodeGen/AArch64/asm-large-immediate.ll b/test/CodeGen/AArch64/asm-large-immediate.ll
deleted file mode 100644
index 83690716a9e2..000000000000
--- a/test/CodeGen/AArch64/asm-large-immediate.ll
+++ /dev/null
@@ -1,10 +0,0 @@
-; RUN: llc < %s -mtriple=aarch64-eabi -no-integrated-as | 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
-}