From: David Majnemer Date: Sun, 27 Dec 2015 06:18:48 +0000 (+0000) Subject: Try to passify buildbot X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=2b72c52b3f59fa81cec631c63c08b189104f2dac Try to passify buildbot git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256458 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/inline-asm-2addr.ll b/test/CodeGen/X86/inline-asm-2addr.ll index 4a2c7fc5eba..c5d96415616 100644 --- a/test/CodeGen/X86/inline-asm-2addr.ll +++ b/test/CodeGen/X86/inline-asm-2addr.ll @@ -1,9 +1,18 @@ -; RUN: llc < %s -march=x86-64 | not grep movq +; RUN: llc < %s -march=x86-64 | FileCheck %s define i64 @t(i64 %a, i64 %b) nounwind ssp { entry: +; CHECK-LABEL: t: %asmtmp = tail call i64 asm "rorq $1,$0", "=r,J,0,~{dirflag},~{fpsr},~{flags},~{cc}"(i32 1, i64 %a) nounwind ; [#uses=1] +; CHECK: #APP +; CHECK-NEXT: rorq %[[REG1:.*]] +; CHECK-NEXT: #NO_APP %asmtmp1 = tail call i64 asm "rorq $1,$0", "=r,J,0,~{dirflag},~{fpsr},~{flags},~{cc}"(i32 1, i64 %b) nounwind ; [#uses=1] +; CHECK-NEXT: #APP +; CHECK-NEXT: rorq %[[REG2:.*]] +; CHECK-NEXT: #NO_APP %0 = add i64 %asmtmp1, %asmtmp ; [#uses=1] +; CHECK-NEXT: leaq (%[[REG2]],%[[REG1]]), %rax ret i64 %0 +; CHECK-NEXT: retq }