brintos

brintos / llvm-project-archived public Read only

0
0
Text · 486 B · 769eff8 Raw
14 lines · plain
1; RUN: llc < %s -mtriple=arm-none-eabi -mcpu=cortex-a8 2>&1 | FileCheck %s2; RUN: llc < %s -mtriple=thumb-none-eabi -mcpu=cortex-a8 2>&1 | FileCheck %s3 4define <1 x i64> @vshl_minint() #0 {5  entry:6    ; CHECK-LABEL: vshl_minint7    ; CHECK: vldr8    ; CHECK: vshl.u649    %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.i11}12 13declare <1 x i64> @llvm.arm.neon.vshiftu.v1i64(<1 x i64>, <1 x i64>)14