[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / llvm / test / CodeGen / X86 / x86-64-ptr-arg-simple.ll
blob03d02ade23d25f62d3139926c15acdaadbb0cf55
1 ; RUN: llc -mtriple=x86_64-pc-linux < %s | FileCheck %s
2 ; RUN: llc -mtriple=x86_64-pc-linux-gnux32 < %s | FileCheck -check-prefix=X32ABI %s
4 ; %in is kept in %esi for both ABIs. But the pointer will be passed in %edi
5 ; for x32, not %rdi
7 ; CHECK: movl %esi, (%rdi)
8 ; X32ABI: movl %esi, (%edi)
10 define void @foo(ptr nocapture %out, i32 %in) nounwind {
11 entry:
12   store i32 %in, ptr %out, align 4
13   ret void
16 ; CHECK: bar
17 ; CHECK: movl (%rsi), %eax
19 ; Similarly here, but for loading
20 ; X32ABI: bar
21 ; X32ABI: movl (%esi), %eax
23 define void @bar(ptr nocapture %pOut, ptr nocapture %pIn) nounwind {
24 entry:
25   %0 = load i32, ptr %pIn, align 4
26   store i32 %0, ptr %pOut, align 4
27   ret void