[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / fastcc-byval.ll
blob920291a73ecd61bdade41b7f05b78b94f3a67f74
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py UTC_ARGS: --no_x86_scrub_sp
2 ; RUN: llc < %s -tailcallopt=false | FileCheck %s
4 ; PR3122
5 ; rdar://6400815
7 ; byval requires a copy, even with fastcc.
9 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"
10 target triple = "i386-apple-darwin9.5"
12 %struct.MVT = type { i32 }
14 define fastcc i32 @bar() nounwind {
15 ; CHECK-LABEL: bar:
16 ; CHECK:       ## %bb.0:
17 ; CHECK-NEXT:    subl $12, %esp
18 ; CHECK-NEXT:    movl $1, 8(%esp)
19 ; CHECK-NEXT:    movl $1, (%esp)
20 ; CHECK-NEXT:    calll _foo
21 ; CHECK-NEXT:    movl 8(%esp), %eax
22 ; CHECK-NEXT:    addl $12, %esp
23 ; CHECK-NEXT:    retl
24         %V = alloca %struct.MVT
25         store i32 1, ptr %V
26         call fastcc void @foo(ptr byval(%struct.MVT) %V) nounwind
27         %t = load i32, ptr %V
28         ret i32 %t
31 declare fastcc void @foo(ptr byval(%struct.MVT))