diff options
| author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-06-19 18:09:54 +0000 |
|---|---|---|
| committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2018-06-19 18:09:54 +0000 |
| commit | 03aa8f3a245e5e7a3aa81617aa4637af33c2213c (patch) | |
| tree | b914ca252fcf8851252eeccd9a7e58437cdf388f /llvm/lib/Target | |
| parent | 0b7936737b0488d06a8a3ce3c37a4836309bc08d (diff) | |
| download | bcm5719-llvm-03aa8f3a245e5e7a3aa81617aa4637af33c2213c.tar.gz bcm5719-llvm-03aa8f3a245e5e7a3aa81617aa4637af33c2213c.zip | |
[Hexagon] Fix the value of HexagonII::TypeCVI_FIRST
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
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h index f5a37603375..cb504b5c3d5 100644 --- a/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h +++ b/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h @@ -25,7 +25,7 @@ namespace llvm { /// HexagonII - This namespace holds all of the target specific flags that /// instruction info tracks. namespace HexagonII { - unsigned const TypeCVI_FIRST = TypeCVI_HIST; + unsigned const TypeCVI_FIRST = TypeCVI_4SLOT_MPY; unsigned const TypeCVI_LAST = TypeCVI_VX_LATE; enum SubTarget { |

