File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
llvm/lib/Target/RISCV/Disassembler Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -702,10 +702,10 @@ static constexpr DecoderListEntry DecoderList32[]{
702702};
703703
704704// Define bitwidths for various types used to instantiate the decoder.
705- template <> static constexpr uint32_t llvm::MCD::InsnBitWidth<uint16_t > = 16 ;
706- template <> static constexpr uint32_t llvm::MCD::InsnBitWidth<uint32_t > = 32 ;
705+ template <> constexpr uint32_t llvm::MCD::InsnBitWidth<uint16_t > = 16 ;
706+ template <> constexpr uint32_t llvm::MCD::InsnBitWidth<uint32_t > = 32 ;
707707// Use uint64_t to represent 48 bit instructions.
708- template <> static constexpr uint32_t llvm::MCD::InsnBitWidth<uint64_t > = 48 ;
708+ template <> constexpr uint32_t llvm::MCD::InsnBitWidth<uint64_t > = 48 ;
709709
710710DecodeStatus RISCVDisassembler::getInstruction32 (MCInst &MI, uint64_t &Size,
711711 ArrayRef<uint8_t > Bytes,
You can’t perform that action at this time.
0 commit comments