[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / CodeGen / ARM / 2009-10-27-double-align.ll
blob98a89a07af6f31ab93fc4a868b5de6bccdf6d7f6
1 ; RUN: llc < %s  -mtriple=arm-linux-gnueabi | FileCheck %s --check-prefix=NOREGALLOC
2 ; RUN: llc < %s  -mtriple=arm-linux-gnueabi -regalloc=basic | FileCheck %s --check-prefix=REGALLOC
4 @.str = private constant [1 x i8] zeroinitializer, align 1
6 define void @g() {
7 entry:
8 ;CHECK: [sp, #8]
9 ;NOREGALLOC: [sp, #12]
10 ;NOREGALLOC: [sp]
11 ;REGALLOC: [sp]
12 ;REGALLOC: [sp, #12]
13         tail call  void (i8*, ...) @f(i8* getelementptr ([1 x i8], [1 x i8]* @.str, i32 0, i32 0), i32 1, double 2.000000e+00, i32 3, double 4.000000e+00)
14         ret void
17 declare void @f(i8*, ...)