forked from OSchip/llvm-project
Fix a type error that crept into r202313.
llvm-svn: 202317
This commit is contained in:
parent
a13839f5ca
commit
e31563c4aa
|
@ -888,7 +888,7 @@ static void emitDwarfRegOp(const AsmPrinter &AP, int Reg) {
|
|||
|
||||
/// Emit an (double-)indirect dwarf register operation.
|
||||
static void emitDwarfRegOpIndirect(const AsmPrinter &AP,
|
||||
int Reg, unsigned Offset, bool Deref) {
|
||||
int Reg, int Offset, bool Deref) {
|
||||
assert(Reg >= 0);
|
||||
if (Reg < 32) {
|
||||
AP.OutStreamer.AddComment(dwarf::
|
||||
|
|
Loading…
Reference in New Issue