[X86] Update test/CodeGen/X86/avg.ll with the help of update_llc_test_checks.py....
[oota-llvm.git] / test / CodeGen / X86 / inline-asm-modifier-n.ll
1 ; RUN: llc < %s -march=x86 -no-integrated-as | grep " 37"
2 ; rdar://7008959
3
4 define void @bork() nounwind {
5 entry:
6         tail call void asm sideeffect "BORK ${0:n}", "i,~{dirflag},~{fpsr},~{flags}"(i32 -37) nounwind
7         ret void
8 }