Skip to content

Commit 764bd80

Browse files
committed
address comments
1 parent e88e749 commit 764bd80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/MC/MCDwarf.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1777,7 +1777,7 @@ void FrameEmitterImpl::EmitFDE(const MCSymbol &cieStart,
17771777
namespace {
17781778

17791779
struct CIEKey {
1780-
CIEKey() {}
1780+
CIEKey() = default;
17811781

17821782
explicit CIEKey(const MCDwarfFrameInfo &Frame)
17831783
: Personality(Frame.Personality),
@@ -1818,7 +1818,7 @@ struct CIEKey {
18181818
unsigned LsdaEncoding = -1;
18191819
bool IsSignalFrame = false;
18201820
bool IsSimple = false;
1821-
unsigned RAReg = static_cast<unsigned>(INT_MAX);
1821+
unsigned RAReg = static_cast<unsigned>(UINT_MAX);
18221822
bool IsBKeyFrame = false;
18231823
bool IsMTETaggedFrame = false;
18241824
};

0 commit comments

Comments
 (0)