Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / ARM / 2013-06-03-ByVal-2Kbytes.ll
blobc57e765c8bb63582a28f6d15fdcf13cdea8a6f75
1 ; RUN: llc < %s -mcpu=cortex-a15 | FileCheck %s
2 ; RUN: llc < %s -mcpu=cortex-a15 -stop-after=finalize-isel -o %t.mir
3 ; RUN: llc %t.mir -mcpu=cortex-a15 -start-after=finalize-isel -o - | FileCheck %s
4 ; ModuleID = 'attri_16.c'
5 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:64:128-a0:0:64-n32-S64"
6 target triple = "armv4t--linux-gnueabihf"
8 %big_struct0 = type { [517 x i32] }
9 %big_struct1 = type { [516 x i32] }
11 ;CHECK-LABEL: f:
12 define void @f(ptr %p0, ptr %p1) {
14 ;CHECK: sub sp, sp, #8
15 ;CHECK: sub sp, sp, #2048
16 ;CHECK: bl callme0
17   call void @callme0(ptr byval(%big_struct0) %p0)
19 ;CHECK: add sp, sp, #8
20 ;CHECK: add sp, sp, #2048
21 ;CHECK: sub sp, sp, #2048
22 ;CHECK: bl callme1
23   call void @callme1(ptr byval(%big_struct1) %p1)
25 ;CHECK: add sp, sp, #2048
27   ret void
30 declare void @callme0(ptr byval(%big_struct0))
31 declare void @callme1(ptr byval(%big_struct1))