The inline asm operand modifier 'n' is suppose
[oota-llvm.git] / test / CodeGen / Generic / asm-large-immediate.ll
index 605665bef6d1909d18a0de0d1c182373135218fe..d5d5eb698123eff0968f0d535c287114392a1374 100644 (file)
@@ -1,8 +1,11 @@
-; 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
 }