forked from OSchip/llvm-project
[PowerPC][Future] Fix for 75828ef615
Used unsigned long where uint64_t should have been used by mistake. Fixed in this patch.
This commit is contained in:
parent
68c04a4f73
commit
64868cbfcf
|
@ -104,7 +104,7 @@ unsigned PPCMCCodeEmitter::getImm16Encoding(const MCInst &MI, unsigned OpNo,
|
|||
return 0;
|
||||
}
|
||||
|
||||
unsigned long
|
||||
uint64_t
|
||||
PPCMCCodeEmitter::getImm34Encoding(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const {
|
||||
|
|
|
@ -50,7 +50,7 @@ public:
|
|||
unsigned getImm16Encoding(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned long getImm34Encoding(const MCInst &MI, unsigned OpNo,
|
||||
uint64_t getImm34Encoding(const MCInst &MI, unsigned OpNo,
|
||||
SmallVectorImpl<MCFixup> &Fixups,
|
||||
const MCSubtargetInfo &STI) const;
|
||||
unsigned getMemRIEncoding(const MCInst &MI, unsigned OpNo,
|
||||
|
|
Loading…
Reference in New Issue