Skip to content

Commit e044283

Browse files
[memprof] Use GlobalValue::GUID instead of uint64_t (NFC) (#94086)
1 parent 197c3a3 commit e044283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/ProfileData/MemProf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ struct Frame {
216216
IsInlineFrame = Other.IsInlineFrame;
217217
}
218218

219-
Frame(uint64_t Hash, uint32_t Off, uint32_t Col, bool Inline)
219+
Frame(GlobalValue::GUID Hash, uint32_t Off, uint32_t Col, bool Inline)
220220
: Function(Hash), LineOffset(Off), Column(Col), IsInlineFrame(Inline) {}
221221

222222
bool operator==(const Frame &Other) const {

0 commit comments

Comments
 (0)