summaryrefslogtreecommitdiffstats
path: root/compiler/utils/stack_checks.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/utils/stack_checks.h')
-rw-r--r--compiler/utils/stack_checks.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/utils/stack_checks.h b/compiler/utils/stack_checks.h
index ce01077808..e762f7d266 100644
--- a/compiler/utils/stack_checks.h
+++ b/compiler/utils/stack_checks.h
@@ -35,6 +35,7 @@ static constexpr size_t kSmallFrameSize = 1 * KB;
//
// A frame is considered large when it's above kLargeFrameSize.
static inline bool FrameNeedsStackCheck(size_t size, InstructionSet isa) {
+ UNUSED(isa);
return size >= kLargeFrameSize;
}