aboutsummaryrefslogtreecommitdiff
path: root/src/common/module.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/module.cc')
-rw-r--r--src/common/module.cc10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/common/module.cc b/src/common/module.cc
index 11bfc444..dc4f957e 100644
--- a/src/common/module.cc
+++ b/src/common/module.cc
@@ -99,10 +99,12 @@ void Module::AddFunction(Function *function) {
#if _DEBUG
{
// There should be no other PUBLIC symbols that overlap with the function.
- Extern debug_ext(function->address);
- ExternSet::iterator it_debug = externs_.lower_bound(&ext);
- assert(it_debug == externs_.end() ||
- (*it_debug)->address >= function->address + function->size);
+ for (const Range& range : function->ranges) {
+ Extern debug_ext(range.address);
+ ExternSet::iterator it_debug = externs_.lower_bound(&ext);
+ assert(it_debug == externs_.end() ||
+ (*it_debug)->address >= range.address + range.size);
+ }
}
#endif