blob: 67a7a1e75a8343c91121634a034b1a71dbe75f01 [file] [log] [blame]
Daniel Sanders753e1762014-02-13 14:44:26 +00001; RUN: llc -no-integrated-as < %s | FileCheck %s
Chris Lattner2ed652f2007-08-25 01:00:22 +00002
3define void @test() {
4entry:
Jack Carterc457f622012-06-21 21:37:54 +00005; CHECK: /* result: 68719476738 */
Chris Lattner2ed652f2007-08-25 01:00:22 +00006 tail call void asm sideeffect "/* result: ${0:c} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
Jack Carterc457f622012-06-21 21:37:54 +00007; CHECK: /* result: -68719476738 */
8 tail call void asm sideeffect "/* result: ${0:n} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
Chris Lattner2ed652f2007-08-25 01:00:22 +00009 ret void
10}