aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/Generic/asm-large-immediate.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/Generic/asm-large-immediate.ll')
-rw-r--r--test/CodeGen/Generic/asm-large-immediate.ll6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/CodeGen/Generic/asm-large-immediate.ll b/test/CodeGen/Generic/asm-large-immediate.ll
index 605665bef6..891bbc9cc1 100644
--- a/test/CodeGen/Generic/asm-large-immediate.ll
+++ b/test/CodeGen/Generic/asm-large-immediate.ll
@@ -1,8 +1,10 @@
-; RUN: llc < %s | grep 68719476738
+; RUN: llc < %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
}
-