mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
266224bf91
This value is the first vector instruction type in numerical order. The previous value was incorrect, leaving TypeCVI_GATHER outside of the range for vector instructions. This caused vector .new instructions to be incorrectly encoded in the presence of gather. llvm-svn: 335065
13 lines
407 B
ArmAsm
13 lines
407 B
ArmAsm
// RUN: llvm-mc -arch=hexagon -mcpu=hexagonv65 -mhvx -show-encoding %s -o - | FileCheck %s
|
|
|
|
// TypeCVI_FIRST was set incorrectly, causing vgather not to be considered
|
|
// a vector instruction. This resulted in an incorrect encoding of the vtmp.new
|
|
// operand in the store.
|
|
// CHECK: encoding: [0x1f,0x45,0x05,0x2f,0x22,0xc0,0x21,0x28]
|
|
|
|
{
|
|
if (q0) vtmp.h = vgather(r5,m0,v31.h).h
|
|
vmem(r1+#0) = vtmp.new
|
|
}
|
|
|