diff options
author | Brandon Potter <brandon.potter@amd.com> | 2018-08-16 20:55:01 -0400 |
---|---|---|
committer | Brandon Potter <Brandon.Potter@amd.com> | 2018-08-17 16:58:05 +0000 |
commit | c5607563fbcc48d7f84ef41057947a18ebcbdeaf (patch) | |
tree | 73f28e77e7270cf4c4942ef53eaeea87acb806cc | |
parent | 003d44f6869ac0115c2f4ec889c145d2c664b2b7 (diff) | |
download | gem5-c5607563fbcc48d7f84ef41057947a18ebcbdeaf.tar.xz |
hsail-x86: fix addr_range_map error
683f411dca introduced changes to the addr_range_map's
"find" method. Nikos replaced the relevant code with a new
"contains" method. Propagate the changes to the gpu-compute
code.
Change-Id: I8cfe3b15cbfb476685b0ed5ba423ea5a8f1000d8
Reviewed-on: https://gem5-review.googlesource.com/12107
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Anthony Gutierrez <anthony.gutierrez@amd.com>
Maintainer: Anthony Gutierrez <anthony.gutierrez@amd.com>
-rw-r--r-- | src/gpu-compute/hsail_code.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu-compute/hsail_code.cc b/src/gpu-compute/hsail_code.cc index 99f4b3896..a5b47b1b8 100644 --- a/src/gpu-compute/hsail_code.cc +++ b/src/gpu-compute/hsail_code.cc @@ -333,7 +333,7 @@ StorageSpace::findSymbol(uint64_t addr) { assert(elements_by_addr.size() > 0); - auto se = elements_by_addr.find(addr); + auto se = elements_by_addr.contains(addr); if (se == elements_by_addr.end()) { return nullptr; |