Skip to content

Commit

Permalink
Stream out module low/high addresses, not function pointers (which br…
Browse files Browse the repository at this point in the history
…eaks clang, in addition to being wrong).
  • Loading branch information
wrwilliams committed Oct 31, 2016
1 parent 2ace882 commit 4cffc88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion symtabAPI/h/Module.h
Expand Up @@ -278,7 +278,7 @@ inline bool operator==(const ModRange& r, Offset off) {
template<typename OS>
OS& operator<<(OS& os, const ModRange& m)
{
os << m.id() << ": [" << m.low << ", " << m.high << ")";
os << m.id() << ": [" << m.low() << ", " << m.high() << ")";
return os;
}

Expand Down

0 comments on commit 4cffc88

Please sign in to comment.