[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / opaque-ptr.ll
blobb2364f2d7a530495a9d01da0cc0217a68ed61f5d
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc -mtriple=x86_64-linux -opaque-pointers < %s | FileCheck %s
4 define void @okay(ptr %p, i32 %x) nounwind {
5 ; CHECK-LABEL: okay:
6 ; CHECK:       # %bb.0:
7 ; CHECK-NEXT:    #APP
8 ; CHECK-NEXT:    addl %esi, %eax
9 ; CHECK-NEXT:    #NO_APP
10 ; CHECK-NEXT:    movl %eax, (%rdi)
11 ; CHECK-NEXT:    retq
12   call void asm "addl $1, $0", "=*r,r"(ptr elementtype(i32) %p, i32 %x)
13   ret void