diff options
Diffstat (limited to 'compiler')
| -rw-r--r-- | compiler/utils/swap_space.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/utils/swap_space.cc b/compiler/utils/swap_space.cc index fc514354eb..325ee4fa01 100644 --- a/compiler/utils/swap_space.cc +++ b/compiler/utils/swap_space.cc @@ -153,9 +153,9 @@ SpaceChunk SwapSpace::NewFileChunk(size_t min_size) { maps_.push_back(new_chunk); return new_chunk; #else - UNUSED(kMininumMapSize); + UNUSED(min_size, kMininumMapSize); LOG(FATAL) << "No swap file support on the Mac."; - return {nullptr, 0U}; // NOLINT [readability/braces] [4] + UNREACHABLE(); #endif } |