1; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
3
4define i32 @f() nounwind  {
5; CHECK-LABEL: f:
6; CHECK:       # %bb.0:
7; CHECK-NEXT:    pushq %rax
8; CHECK-NEXT:    movl $1, %edi
9; CHECK-NEXT:    callq t@PLT
10; CHECK-NEXT:    xorl %eax, %eax
11; CHECK-NEXT:    popq %rcx
12; CHECK-NEXT:    retq
13	tail call void @t( i32 1 ) nounwind
14	ret i32 0
15}
16
17declare void @t(i32)
18