• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: llc < %s -march=x86-64 | grep mov | count 1
2
3define i32 @f() nounwind  {
4	tail call void @t( i32 1 ) nounwind
5	ret i32 0
6}
7
8declare void @t(i32)
9