[ARM] Enable shrink-wrapping by default.
[oota-llvm.git] / test / CodeGen / ARM / neon_vshl_minint.ll
1 ; RUN: llc < %s -mtriple=arm-none-eabi -mcpu=cortex-a8 2>&1 | FileCheck %s
2 ; RUN: llc < %s -mtriple=thumb-none-eabi -mcpu=cortex-a8 2>&1 | FileCheck %s
3
4 define <1 x i64> @vshl_minint() #0 {
5   entry:
6     ; CHECK-LABEL: vshl_minint
7     ; CHECK: vldr
8     ; CHECK: vshl.u64
9     %vshl.i = tail call <1 x i64> @llvm.arm.neon.vshiftu.v1i64(<1 x i64> undef, <1 x i64> <i64 -9223372036854775808>)
10     ret <1 x i64> %vshl.i
11 }
12
13 declare <1 x i64> @llvm.arm.neon.vshiftu.v1i64(<1 x i64>, <1 x i64>)