[WinEH] Add some test cases I forgot to add to previous commits
[oota-llvm.git] / test / CodeGen / AArch64 / neon-idiv.ll
1 ; RUN: llc -mtriple=aarch64-none-linux-gnu < %s -mattr=+neon | FileCheck %s
2
3 define <4 x i32> @test1(<4 x i32> %a) {
4   %rem = srem <4 x i32> %a, <i32 7, i32 7, i32 7, i32 7>
5   ret <4 x i32> %rem
6 ; CHECK-LABEL: test1
7 ; FIXME: Can we lower this more efficiently?
8 ; CHECK: mul
9 ; CHECK: mul
10 ; CHECK: mul
11 ; CHECK: mul
12 }
13