[X86] Update test/CodeGen/X86/avg.ll with the help of update_llc_test_checks.py....
[oota-llvm.git] / test / CodeGen / X86 / inline-asm-2addr.ll
1 ; RUN: llc < %s -march=x86-64 | not grep movq
2
3 define i64 @t(i64 %a, i64 %b) nounwind ssp {
4 entry:
5         %asmtmp = tail call i64 asm "rorq $1,$0", "=r,J,0,~{dirflag},~{fpsr},~{flags},~{cc}"(i32 1, i64 %a) nounwind            ; <i64> [#uses=1]
6         %asmtmp1 = tail call i64 asm "rorq $1,$0", "=r,J,0,~{dirflag},~{fpsr},~{flags},~{cc}"(i32 1, i64 %b) nounwind           ; <i64> [#uses=1]
7         %0 = add i64 %asmtmp1, %asmtmp          ; <i64> [#uses=1]
8         ret i64 %0
9 }