view test/CodeGen/AArch64/arm64-i16-subreg-extract.ll @ 117:facf19d07cd9

check EHStack on EmitCall (CbC goto)
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Wed, 24 Aug 2016 20:10:41 +0900
parents afa8332a0e37
children 1172e4bd9c6f
line wrap: on
line source

; RUN: llc < %s -march=arm64 -aarch64-neon-syntax=apple | FileCheck %s

define i32 @foo(<4 x i16>* %__a) nounwind {
; CHECK-LABEL: foo:
; CHECK: umov.h w{{[0-9]+}}, v{{[0-9]+}}[0]
  %tmp18 = load <4 x i16>, <4 x i16>* %__a, align 8
  %vget_lane = extractelement <4 x i16> %tmp18, i32 0
  %conv = zext i16 %vget_lane to i32
  %mul = mul nsw i32 3, %conv
  ret i32 %mul
}