Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm/include/llvm/ProfileData/MemProf.h
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ struct Frame {
IsInlineFrame = Other.IsInlineFrame;
}

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

bool operator==(const Frame &Other) const {
Expand Down