[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / x86-64-ret0.ll
blobd3f5f74f2789c98b8be9a7d76f41e1caf7ba3f46
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=x86_64-- | FileCheck %s
4 define 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
17 declare void @t(i32)