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
7 ; CHECK: movl %esi, (%rdi)
8 ; X32ABI: movl %esi, (%edi)
10 define void @foo(ptr nocapture %out, i32 %in) nounwind {
12 store i32 %in, ptr %out, align 4
17 ; CHECK: movl (%rsi), %eax
19 ; Similarly here, but for loading
21 ; X32ABI: movl (%esi), %eax
23 define void @bar(ptr nocapture %pOut, ptr nocapture %pIn) nounwind {
25 %0 = load i32, ptr %pIn, align 4
26 store i32 %0, ptr %pOut, align 4