diff options
Diffstat (limited to 'test/CodeGen/Hexagon/vect/vect-mul-v4i16.ll')
-rw-r--r-- | test/CodeGen/Hexagon/vect/vect-mul-v4i16.ll | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/CodeGen/Hexagon/vect/vect-mul-v4i16.ll b/test/CodeGen/Hexagon/vect/vect-mul-v4i16.ll new file mode 100644 index 0000000..a50d7f8 --- /dev/null +++ b/test/CodeGen/Hexagon/vect/vect-mul-v4i16.ll @@ -0,0 +1,10 @@ +; RUN: llc -march=hexagon < %s | FileCheck %s +; CHECK: vmpyh +; CHECK: vmpyh +; CHECK: vtrunewh + +define <4 x i16> @t_i4x16(<4 x i16> %a, <4 x i16> %b) nounwind { +entry: + %0 = mul <4 x i16> %a, %b + ret <4 x i16> %0 +} |